Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Brenner <scott@scottbrenner.me>2020-07-20 02:33:09 +0300
committerScott Brenner <scott@scottbrenner.me>2020-07-20 02:33:09 +0300
commitf803301e63e60b2eadd93d35cfb044f209025937 (patch)
tree2baa664bc8d1963495118aa887661afc8fbbaf02
parentb3f09ae9ad2cd98a4412ca119c3ffa1ae956bfbd (diff)
This shouhis should be changed_when: true
-rw-r--r--wordpress-nginx/roles/wordpress/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/wordpress-nginx/roles/wordpress/tasks/main.yml b/wordpress-nginx/roles/wordpress/tasks/main.yml
index 9b090a8..9881960 100644
--- a/wordpress-nginx/roles/wordpress/tasks/main.yml
+++ b/wordpress-nginx/roles/wordpress/tasks/main.yml
@@ -21,7 +21,7 @@
register: "wp_salt"
become: no
become_method: sudo
- changed_when: false
+ changed_when: true
- name: Create WordPress database
mysql_db: name={{ wp_db_name }} state=present