File: runme.sh

package info (click to toggle)
ansible-core 2.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 32,752 kB
  • sloc: python: 181,000; cs: 4,929; sh: 4,611; xml: 34; makefile: 21
file content (24 lines) | stat: -rwxr-xr-x 833 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash

set -eux

cleanup () {
    files="shostlist.txt hostlist.txt"
    for file in $files; do
        if [[ -f "$file" ]]; then
            rm -f "$file"
        fi
    done
}

for EXTRA in '{"inputlist": ["hostB", "hostA", "hostD", "hostC"]}' \
             '{"myorder": "inventory", "inputlist": ["hostB", "hostA", "hostD", "hostC"]}' \
             '{"myorder": "sorted", "inputlist": ["hostA", "hostB", "hostC", "hostD"]}'  \
             '{"myorder": "reverse_sorted", "inputlist": ["hostD", "hostC", "hostB", "hostA"]}' \
             '{"myorder": "reverse_inventory", "inputlist": ["hostC", "hostD", "hostA", "hostB"]}' \
             '{"myorder": "shuffle", "inputlist": ["hostC", "hostD", "hostA", "hostB"]}'
do
    cleanup
    ansible-playbook order.yml --forks 1 -i inventory -e "$EXTRA" "$@"
done
cleanup