Przeglądaj źródła

ansible: check if ansible is installed

pull/1/head
10sr 10 lat temu
rodzic
commit
b339377511
1 zmienionych plików z 8 dodań i 0 usunięć
  1. +8
    -0
      ansible/run.sh

+ 8
- 0
ansible/run.sh Wyświetl plik

@@ -1,3 +1,11 @@
#!/bin/sh
set -e

if ! command -v ansible-playbook >/dev/null
then
echo 'Command not found: ansible-playbook'
echo 'Install ansible first.'
exit 1
fi

ansible-playbook -i hosts ansible.yml --ask-sudo-pass

Ładowanie…
Anuluj
Zapisz