Skip to content

Commit 0c224d8

Browse files
committed
PR geerlingguy#76 follow-up: Clean up defaults examples.
1 parent a3d3bf2 commit 0c224d8

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

defaults/main.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,18 +74,19 @@ mysql_config_include_files: []
7474
# - src: path/relative/to/playbook/file.cnf
7575
# - { src: path/relative/to/playbook/anotherfile.cnf, force: yes }
7676

77-
7877
# Databases.
7978
mysql_databases: []
80-
# Full example:
81-
# mysql_databases:
82-
# - { name: example, collation: utf8_general_ci, encoding: utf8, replicate: 1 }
79+
# - name: example
80+
# collation: utf8_general_ci
81+
# encoding: utf8
82+
# replicate: 1
8383

84-
# Users
84+
# Users.
8585
mysql_users: []
86-
# Full Example:
87-
# mysql_users:
88-
# - { name: example, host: 127.0.0.1, password: secret, priv: *.*:USAGE }
86+
# - name: example
87+
# host: 127.0.0.1
88+
# password: secret
89+
# priv: *.*:USAGE
8990

9091
# Replication settings (replication is only enabled if master/user have values).
9192
mysql_server_id: "1"

0 commit comments

Comments
 (0)