From ec1294839837c88fd6bb165baff8d719aedc41c2 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Mon, 9 Jul 2018 16:01:57 +0200 Subject: [PATCH] mysql: add quotes in a few tasks --- mysql-oracle/tasks/users.yml | 4 ++-- mysql/tasks/users_stretch.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql-oracle/tasks/users.yml b/mysql-oracle/tasks/users.yml index bab76418..696743f3 100644 --- a/mysql-oracle/tasks/users.yml +++ b/mysql-oracle/tasks/users.yml @@ -37,7 +37,7 @@ create: yes with_items: - { option: 'user', value: 'mysqladmin' } - - { option: password, value: '{{ mysql_admin_password.stdout }}' } + - { option: 'password', value: '{{ mysql_admin_password.stdout }}' } when: create_mysqladmin_user | changed tags: - mysql @@ -73,7 +73,7 @@ with_nested: - [ "client", "mysql_upgrade" ] - [ { option: 'user', value: 'debian-sys-maint' }, - { option: password, value: '{{ mysql_debian_password.stdout }}' } + { option: 'password', value: '{{ mysql_debian_password.stdout }}' } ] when: create_debian_user | changed tags: diff --git a/mysql/tasks/users_stretch.yml b/mysql/tasks/users_stretch.yml index 6b180612..70ae9933 100644 --- a/mysql/tasks/users_stretch.yml +++ b/mysql/tasks/users_stretch.yml @@ -76,7 +76,7 @@ with_nested: - [ "client", "mysql_upgrade" ] - [ { option: 'user', value: 'debian-sys-maint' }, - { option: password, value: '{{ mysql_debian_password.stdout }}' } + { option: 'password', value: '{{ mysql_debian_password.stdout }}' } ] when: create_debian_user.changed tags: