mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
19 lines
407 B
YAML
19 lines
407 B
YAML
|
##
|
||
|
# Example Ansible playbook that uses the MySQL module.
|
||
|
#
|
||
|
|
||
|
---
|
||
|
- hosts: all
|
||
|
user: root
|
||
|
|
||
|
tasks:
|
||
|
|
||
|
- name: Create database user
|
||
|
action: mysql_user user=bob password=12345 priv=*.*:ALL state=present
|
||
|
|
||
|
- name: Create database
|
||
|
action: mysql_db db=bobdata state=present
|
||
|
|
||
|
- name: Ensure no user named 'sally' exists and delete if found.
|
||
|
action: mysql_user user=sally state=absent
|