Tarefa Ansible para confirmar se um processo está em execução

8

Ansible 2.1

No playbook, iniciei um processo:

- name: Start Automation Agent, and enable start on boot
  service: name=mongodb-mms-automation-agent state=started enabled=yes

Na recapitulação do jogo, parece que o processo foi iniciado com sucesso.

TASK [install : Start automation agent, and enable start on boot] **************
changed: [server1]

No entanto, quando efetuar login no host remoto e executar ps , o processo não será executado. A verificação no log do processo falhou em algum pré-requisito (pretendido).

Como escrevo uma tarefa em um playbook para confirmar se o processo foi iniciado com sucesso?

    
por Howard Lee 03.06.2016 / 19:36

2 respostas

9

Você pode verificar com o filtro failed Jinja2 depois de executar o comando que verifica se o processo está sendo executado.

Aqui está um exemplo que usa a saída do comando systemctl status apache2 para decidir se o Apache está sendo executado:

- name: Check if Apache is running
  command: systemctl status apache2
  ignore_errors: yes
  changed_when: false
  register: service_apache_status

- name: Report status of Apache
  fail:
    msg: |
      Service apache2 is not running.
      Output of 'systemctl status apache2':
      {{ service_apache_status.stdout }}
      {{ service_apache_status.stderr }}
  when: service_apache_status | failed

Se o comando da primeira tarefa falhar, a segunda tarefa falhará e mostrará porque a primeira tarefa falhou.
O código de retorno é armazenado em service_apache_status.rc .

Exemplo de saída de uma falha:

TASK: [Check if Apache is running] *********************** 
failed: [localhost] => {"changed": false, "cmd": ["systemctl", "status", "apache2"], "delta": "0:00:00.009379", "end": "2016-06-06 15:17:27.827172", "rc": 3, "start": "2016-06-06 15:17:27.817793", "stdout_lines": ["* apache2.service", "   Loaded: not-found (Reason: No such file or directory)", "   Active: inactive (dead)"], "warnings": []}
stdout: * apache2.service
   Loaded: not-found (Reason: No such file or directory)
   Active: inactive (dead)
...ignoring

TASK: [Report status of Apache] ***************************
failed: [localhost] => {"failed": true}
msg: apache2 is not running
systemctl status apache2 output:
* apache2.service
   Loaded: not-found (Reason: No such file or directory)
   Active: inactive (dead)

Aqui é diferente (embora possivelmente menos confiável), usando ps , para verificar se o processo está sendo executado:

- name: Check if Apache is running
  shell: ps aux | grep apache2 | grep -v grep
  ignore_errors: yes
  changed_when: false
  register: service_apache_status

- name: Report status of Apache
  fail:
    msg: |
      Service apache2 is not running.
      Return code from 'grep':
      {{ service_apache_status.rc }}
  when: service_apache_status.rc != 0
    
por 06.06.2016 / 17:36
4

Isso é o que eu faço agora:

- name: Confirm Automation Agent is running
  command: service mongodb-mms-automation-agent status
  register: agent_status
  failed_when: "'NOT' in agent_status.stdout"
  changed_when: False

failed_when é introduzido em 1.4. changed_when: False é usado para suprimir o status da mudança. Leia mais .

    
por 08.06.2016 / 22:35

Tags