You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
315 B
6 lines
315 B
4 years ago
|
echo "[service]" > inventory.yml
|
||
|
my_ip=$(ifconfig eth0 | grep 'inet' | cut -d: -f2 | awk '{print $2}')
|
||
|
my_ip1=$(echo $my_ip | sed 's/.[0-9]$/.*/')
|
||
|
nmap -sP -oG - $my_ip1 | grep Up | cut -d ' ' -f2 | tail -n +2 >> inventory.yml
|
||
|
ansible-playbook -u docker -i inventory.yml test.yml -f 5 --ask-pass --ask-become-pass
|