blob: 803290cb8474f45418e787bc46e561350e035a0e (
plain)
1
2
3
4
5
6
|
- name: Start services
shell: "service {{ item }} start || service {{ item }} status"
loop: "{{ services | default([]) }}"
register: _svc_start
changed_when: "'already running' not in _svc_start.stdout and 'is running' not in _svc_start.stdout"
failed_when: "_svc_start.rc != 0 and 'already running' not in _svc_start.stdout and 'is running' not in _svc_start.stdout"
|