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.

run.sh 210 B

10 years ago
10 years ago
10 years ago
1234567891011
  1. #!/bin/sh
  2. set -e
  3. if ! command -v ansible-playbook >/dev/null
  4. then
  5. echo 'Command not found: ansible-playbook'
  6. echo 'Install ansible first.'
  7. exit 1
  8. fi
  9. ansible-playbook -i hosts --ask-sudo-pass "$@"