s/true/True/ ; s/false/False/

This commit is contained in:
Gregory Colpart 2016-12-16 01:27:12 +01:00 committed by Jérémy Lecour
parent e259c1aaea
commit 55433ffc38
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
mysql_use_mariadb: False
mysql_replace_root_with_mysqladmin: true
mysql_replace_root_with_mysqladmin: True
mysql_custom_datadir: ''
mysql_custom_tmpdir: ''

View file

@ -8,7 +8,7 @@
- name: "read the real datadir"
command: readlink -f /var/lib/mysql
changed_when: false
changed_when: False
register: mysql_current_real_datadir_test
tags:
- mysql

View file

@ -12,7 +12,7 @@
- name: Create a password for NRPE
shell: perl -e 'print map{("a".."z","A".."Z",0..9)[int(rand(62))]}(1..16)'
register: mysql_nrpe_password
changed_when: false
changed_when: False
- debug:
msg: "repl password: {{ mysql_nrpe_password.stdout }}"

View file

@ -12,7 +12,7 @@
- name: create a password for mysqladmin
shell: perl -e 'print map{("a".."z","A".."Z",0..9)[int(rand(62))]}(1..16)'
register: mysql_admin_password
changed_when: false
changed_when: False
tags:
- mysql