Background: in Puppet è possibile eseguire un comando a meno che non sia già stato eseguito:
exec { '/bin/echo root >> /usr/lib/cron/cron.allow': path => '/usr/bin:/usr/sbin:/bin', unless => 'grep root /usr/lib/cron/cron.allow 2>/dev/null', }
Obiettivo: eseguire un comando a meno che non sia già stato eseguito in Ansible
metodi
compiti / main.yml
- name: add vhost sensu
command: rabbitmqctl add_vhost /sensu
risultati
TASK [ansible-rabbitmq : add vhost sensu] **************************************
fatal: [111.222.333.444]: FAILED! => {"changed": true, "cmd": ["rabbitmqctl",
"add_vhost", "/sensu"], "delta": "0:00:00.210140", "end":
"2016-07-29 12:55:19.384455", "failed": true, "rc": 2, "start":
"2016-07-29 12:55:19.174315", "stderr": "Error: vhost_already_exists: /sensu",
"stdout": "Creating vhost \"/sensu\" ...", "stdout_lines":
["Creating vhost \"/sensu\" ..."], "warnings": []}
Discussione
Google ha unless ansible
mostrato questo documento suwhen
. Sulla base di tale documentazione, è when
stata aggiunta una dichiarazione:
- name: add vhost sensu
command: rabbitmqctl add_vhost /sensu
when: rabbitmqctl list_vhosts | grep sensu
l'esecuzione del codice ha comportato:
fatal: [192.168.0.9]: FAILED! => {"failed": true, "msg": "The conditional
check 'rabbitmqctl list_vhosts | grep sensu' failed. The error was: template
error while templating string: expected token 'end of statement block', got
'list_vhosts'. String: {% if rabbitmqctl list_vhosts | grep sensu %} True {%
else %} False {% endif %}\n\nThe error appears to have been in '/etc/ansible
/roles/ansible-rabbitmq/tasks/main.yml': line 10, column 3, but may\nbe
elsewhere in the file depending on the exact syntax problem.\n\nThe
offending line appears to be:\n\n\n- name: add vhost sensu\n ^ here\n"}
- Prima di tutto, immagina che abbia
when
avuto successo, quindi il comando non verrà eseguito e quindi sembrerà più simileonlyif
a Puppet . - In secondo luogo, se il momento in cui andrebbe a buon fine dovrebbe essere usato un segno di escalation per simulare un a meno?
- Uso di
register
. Cosa succede se quel file viene perso o il vhost è stato rimosso ad esempio da un essere umano? Puppetunless
esegue sempre i comandi in modo che sia chiaro se il comando deve essere eseguito.
fatal: [IP]: FAILED! => {"changed": true, "cmd": ["rabbitmqctl", "add_vhost", "/sensu"], "delta": "0:00:00.198681", "end": "2016-07-29 13:43:00.870193", "failed": true, "rc": 2, "start": "2016-07-29 13:43:00.671512", "stderr": "Error: vhost_already_exists: /sensu", "stdout": "Creating vhost \"/sensu\" ...", "stdout_lines": ["Creating vhost \"/sensu\" ..."], "warnings": []}