Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit d055f16

Browse files
committed
Fixes #1271: Don't run PHP role for 'drupal' tag.
1 parent 81a3c2c commit d055f16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

provisioning/playbook.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131

3232
- include: tasks/init-debian.yml
3333
when: ansible_os_family == 'Debian'
34-
tags: ['php', 'drupal']
34+
tags: ['php']
3535
static: no
3636
- include: tasks/init-redhat.yml
3737
when: ansible_os_family == 'RedHat'
38-
tags: ['php', 'drupal']
38+
tags: ['php']
3939
static: no
4040

4141
- name: Run configured pre-provision shell scripts.
@@ -50,7 +50,7 @@
5050
- "{{ pre_provision_tasks_dir|default(omit) }}"
5151

5252
- include: tasks/php.yml
53-
tags: ['php', 'drupal']
53+
tags: ['php']
5454

5555
roles:
5656
# Essential roles.
@@ -61,7 +61,7 @@
6161
- { role: geerlingguy.apache, when: drupalvm_webserver == 'apache', tags: ['webserver']}
6262
- { role: geerlingguy.apache-php-fpm, when: drupalvm_webserver == 'apache', tags: ['webserver'] }
6363
- { role: geerlingguy.nginx, when: drupalvm_webserver == 'nginx', tags: ['webserver'] }
64-
- { role: geerlingguy.php, tags: ['php', 'drupal'] }
64+
- { role: geerlingguy.php, tags: ['php'] }
6565
- { role: geerlingguy.php-pecl, tags: ['php'] }
6666
- { role: geerlingguy.composer }
6767
- { role: geerlingguy.mysql, when: drupal_db_backend == 'mysql', tags: ['database'] }

0 commit comments

Comments
 (0)