forked from ISTI-ansible-roles/ansible-roles
8 lines
169 B
YAML
8 lines
169 B
YAML
|
---
|
||
|
- name: Stop and disable the mysql server if we do not want it running
|
||
|
service: name=mysql state=stopped enabled=no
|
||
|
when: not mysql_enabled
|
||
|
tags:
|
||
|
- mysql
|
||
|
|