Explorar el Código

ansible: check if ansible is installed

pull/1/head
10sr hace 10 años
padre
commit
b339377511
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. +8
    -0
      ansible/run.sh

+ 8
- 0
ansible/run.sh Ver fichero

@@ -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

Cargando…
Cancelar
Guardar