Skip to content

Commit dec092a

Browse files
committed
Fixed debian support
1 parent 5430576 commit dec092a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

provision/roles/boilerplate-main-development/tasks/bootstrap.yml

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

99

1010
- include: bootstrap/php-blackfire/ubuntu.yml
11-
when: ansible_distribution == 'Ubuntu' and PROVISION.install.phpBlackfire
11+
when: ( ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian' ) and PROVISION.install.phpBlackfire
1212

1313
- include: bootstrap/php-xdebug/ubuntu.yml
14-
when: ansible_distribution == 'Ubuntu' and PROVISION.install.phpXdebug
14+
when: ( ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian' ) and PROVISION.install.phpXdebug
1515

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
when: ansible_distribution == 'CentOS'
2121

2222
- include: bootstrap/php.ubuntu.yml
23-
when: ansible_distribution == 'Ubuntu'
23+
when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian'
2424

2525
- include: bootstrap/php.yml
2626

provision/roles/boilerplate-main/tasks/bootstrap/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- name: Fact - php pool on ubuntu
1111
set_fact:
1212
php_pool_conf: /etc/php5/fpm/pool.d/www.conf
13-
when: ansible_distribution == 'Ubuntu'
13+
when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian'
1414

1515
- name: Configure php-fpm (pool www.conf)
1616
lineinfile:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- name: Fact - php pool on ubuntu
1212
set_fact:
1313
php_pool_conf: /etc/php5/fpm/pool.d/www.conf
14-
when: ansible_distribution == 'Ubuntu'
14+
when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian'
1515

1616
- name: Configure environment variables from DOCKER_ENVIRONMENT for php-fpm (pool www.conf)
1717
lineinfile:

0 commit comments

Comments
 (0)