Skip to content

Commit 055e676

Browse files
committed
Ansible 2.0 compatiblity
Update your docker images if provisioning fails!
1 parent bd7bddf commit 055e676

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

provision/roles/boilerplate-main/tasks/bootstrap/web.apache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- name: Deploy dynamic apache vhost
88
template:
9-
src: ../../templates/apache/vhost.conf.j2
9+
src: templates/apache/vhost.conf.j2
1010
dest: /opt/docker/etc/httpd/vhost.conf
1111
owner: root
1212
group: root

provision/roles/boilerplate-main/tasks/bootstrap/web.nginx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- name: Deploy dynamic nginx vhost
88
template:
9-
src: ../../templates/nginx/vhost.conf.j2
9+
src: templates/nginx/vhost.conf.j2
1010
dest: /opt/docker/etc/nginx/vhost.conf
1111
owner: root
1212
group: root

provision/roles/boilerplate-main/tasks/entrypoint/mysql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
- name: Deploy root my.cnf
44
template:
5-
src: ../../templates/my.cnf.j2
5+
src: templates/my.cnf.j2
66
dest: /root/.my.cnf
77
owner: root
88
group: root
99
mode: 0644
1010

1111
- name: Deploy user my.cnf
1212
template:
13-
src: ../../templates/my.cnf.j2
13+
src: templates/my.cnf.j2
1414
dest: /home/.my.cnf
1515
owner: "{{ lookup('env','APPLICATION_USER') }}"
1616
group: "{{ lookup('env','APPLICATION_USER') }}"

0 commit comments

Comments
 (0)