blob: fa9f169724cd85bf7fa7bcbc227850d79dfa37ff (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- hosts: target
serial: 1
tasks:
- name: "Check that -e 'action=[stop|start|restart]' was passed in"
fail:
msg: "The variable 'action' was not passed in with a value of 'stop', 'start' or 'restart' on the command line."
when: action not in ["stop", "start", "restart"]
- include: playbooks/apache-ctl.yaml
|