Browse Source

Merge pull request #472 from mikeashley/z-push-fix

Correct special-casing of z-push Apache configuration
Sven Neuhaus 9 years ago
parent
commit
150fa2bf06
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      roles/mailserver/tasks/z-push.yml

+ 1
- 1
roles/mailserver/tasks/z-push.yml View File

44
 - name: Configure z-push apache alias and php settings
44
 - name: Configure z-push apache alias and php settings
45
   copy: src=etc_apache2_conf.d_z-push.conf dest=/etc/apache2/conf.d/z-push.conf
45
   copy: src=etc_apache2_conf.d_z-push.conf dest=/etc/apache2/conf.d/z-push.conf
46
   notify: restart apache
46
   notify: restart apache
47
-  when: ansible_distribution_release != 'trusty' or ansible_distribution_release != 'jessie'
47
+  when: ansible_distribution_release != 'trusty' and ansible_distribution_release != 'jessie'
48
 
48
 
49
 
49
 
50
 - name: Create z-push apache alias and php configuration file for Ubuntu Trusty / jessie
50
 - name: Create z-push apache alias and php configuration file for Ubuntu Trusty / jessie

Loading…
Cancel
Save