ansible role to deploy apache on debian
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678
  1. ---
  2. - name: restart apache
  3. service:
  4. name: "{{apache_service}}"
  5. state: restarted
  6. when: apache_state != "stopped"