diff --git a/CHANGELOG.md b/CHANGELOG.md index a7b7d2b7..27e4081e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ The **patch** part changes incrementally at each release. ### Fixed * lxc-php: Don't remove the default pool +* roundcube: fix typo for roundcube vhost ### Security diff --git a/webapps/roundcube/tasks/main.yml b/webapps/roundcube/tasks/main.yml index ba65b1f8..2269857a 100644 --- a/webapps/roundcube/tasks/main.yml +++ b/webapps/roundcube/tasks/main.yml @@ -88,7 +88,7 @@ - name: deploy apache roundcube vhost template: src: apache2.conf.j2 - dest: /etc/apache2/sites-available/rouncube.conf + dest: /etc/apache2/sites-available/roundcube.conf mode: "0640" notify: reload apache2 when: roundcube_webserver == "apache" @@ -97,8 +97,8 @@ - name: enable apache roundcube vhost file: - src: /etc/apache2/sites-available/rouncube.conf - dest: /etc/apache2/sites-enabled/rouncube.conf + src: /etc/apache2/sites-available/roundcube.conf + dest: /etc/apache2/sites-enabled/roundcube.conf state: link notify: reload apache2 when: roundcube_webserver == "apache" @@ -108,14 +108,14 @@ - name: deploy Nginx roundcube vhost template: src: nginx.conf.j2 - dest: /etc/nginx/sites-available/rouncube.conf + dest: /etc/nginx/sites-available/roundcube.conf when: roundcube_webserver == "nginx" notify: reload nginx - name: enable Nginx roundcube vhost file: - src: "/etc/nginx/sites-available/rouncube.conf" - dest: "/etc/nginx/sites-enabled/rouncube.conf" + src: "/etc/nginx/sites-available/roundcube.conf" + dest: "/etc/nginx/sites-enabled/roundcube.conf" state: link when: roundcube_webserver == "nginx" notify: reload nginx