Update to 2021-12-01 19:13

This commit is contained in:
Daniel Berteaud
2021-12-01 19:13:34 +01:00
commit 4c4556c660
2153 changed files with 60999 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
---
dependencies:
- role: httpd_php

View File

@@ -0,0 +1,11 @@
---
- name: Check if composer exists in /usr/local/bin
stat: path=/usr/local/bin/composer
register: composer_local
tags: web
- name: Remove manually installed composer
file: path=/usr/local/bin/composer state=absent
when: composer_local.stat.exists and not composer_local.stat.islnk
tags: web

View File

@@ -0,0 +1,7 @@
---
- name: Install composer
package:
name:
- composer
tags: web

View File

@@ -0,0 +1,4 @@
---
- include: install.yml
- include: cleanup.yml