]> git.phdru.name Git - ansible.git/commitdiff
Fix conditions
authorOleg Broytman <phd@phdru.name>
Sun, 28 Jul 2019 17:43:13 +0000 (20:43 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 28 Jul 2019 19:25:03 +0000 (22:25 +0300)
playbooks/debian/roles/add-apache-vhost/tasks/main.yml
playbooks/debian/roles/apache/tasks/main.yml
playbooks/debian/roles/phd/tasks/main.yml
playbooks/debian/roles/root/tasks/mc.yml

index 666cd77d7ce9c15a0d0fdee7cf880cba929bfb32..7a441497696804bca3a35bfa7c686869f9e7f190 100644 (file)
@@ -5,8 +5,8 @@
 
 - name: Add vhost
   import_tasks: add-vhost.yml
-  when: not vhost_conf.stats.exists
+  when: not vhost_conf.stat.exists
 
 - name: Run dehydrated for the vhost
   import_tasks: dehydrated.yml
-  when: not vhost_conf.stats.exists
+  when: not vhost_conf.stat.exists
index b289d9419d2223378b721663adca2ff167b6c2dd..a5b662a36e9ccd94311bed8d017ccdb98c8271dc 100644 (file)
@@ -5,7 +5,7 @@
 
 - debug:
     msg: "apache has already been configured"
-  when: not phd_conf.stats.exists
+  when: phd_conf.stat.exists
 
 - name: Install apache
   become: true
     purge: yes
     state: latest
     update_cache: yes
-  when: not phd_conf.stats.exists
+  when: not phd_conf.stat.exists
 
 - name: Enable SSL module
   become: true
   command: a2enmod ssl
   notify: Reload apache
-  when: not phd_conf.stats.exists
+  when: not phd_conf.stat.exists
 
 - name: Configure apache
   become: true
     group: root
     mode: '0640'
     force: no
-  when: not phd_conf.stats.exists
+  when: not phd_conf.stat.exists
 
 - name: Enable config
   become: true
   command: a2enconf 001-phd
   notify: Reload apache
-  when: not phd_conf.stats.exists
+  when: not phd_conf.stat.exists
 
 - name: Configure logrotate
   become: true
index 4c00ec5d2d369e06b92bd489fa10d1df1ce921a7..2c7373c0845e7ba58b5cd9f437cc92aa2bf8c0c8 100644 (file)
@@ -16,4 +16,4 @@
       unarchive:
         src: ~/archive/STORE/phd/Home/phd.tar.bz2
         dest: /home
-  when: phd_exists.results|selectattr('stat.exists')|list|length == 2
+  when: phd_exists.results|selectattr('stat.exists')|list|length != 2
index dbb78bad25e8639dc1a4e7d4f3e34284f15d6bdf..ec8052308c4f808397fb43f591ce2b20c19ca81f 100644 (file)
@@ -7,7 +7,7 @@
 
 - debug:
     msg: "mc links have already been created"
-  when: links_exist.results|selectattr('stat.islnk')|list|length == 3
+  when: links_exist.results|selectattr('stat.exists')|selectattr('stat.islnk')|list|length == 3
 
 - name: "Setup root mc - create directories for mc links"
   become: true
@@ -16,7 +16,7 @@
     state: directory
     mode: "0700"
   loop: ['.cache', '.config', '.local/share']
-  when: links_exist.results|selectattr('stat.islnk')|list|length == 3
+  when: links_exist.results|selectattr('stat.exists')|selectattr('stat.islnk')|list|length != 3
 
 - name: "Setup root mc - remove mc directories"
   become: true
@@ -24,7 +24,7 @@
     path: "~root/{{ item }}"
     state: absent
   loop: ['.cache/mc', '.config/mc', '.local/share/mc']
-  when: links_exist.results|selectattr('stat.islnk')|list|length == 3
+  when: links_exist.results|selectattr('stat.exists')|selectattr('stat.islnk')|list|length != 3
 
 - name: "Setup root mc - link mc directories (1)"
   become: true
@@ -34,7 +34,7 @@
     src: "../.mc"
     force: yes
   loop: ['.cache/mc', '.config/mc']
-  when: links_exist.results|selectattr('stat.islnk')|list|length == 3
+  when: links_exist.results|selectattr('stat.exists')|selectattr('stat.islnk')|list|length != 3
 
 - name: "Setup root mc - link mc directories (2)"
   become: true
@@ -44,7 +44,7 @@
     src: "../../.mc"
     force: yes
   loop: ['.local/share/mc']
-  when: links_exist.results|selectattr('stat.islnk')|list|length == 3
+  when: links_exist.results|selectattr('stat.exists')|selectattr('stat.islnk')|list|length != 3
 
 - name: "Setup root mc - overwrite files from ~phd/admin"
   become: true