Add tasks to install packages

This commit is contained in:
Corbin Bartsch 2022-04-10 17:05:12 -04:00
parent e99fe92567
commit 63f707e866
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
2 changed files with 36 additions and 0 deletions

View File

@ -1,4 +1,7 @@
---
- name: Install packages
include_tasks: packages.yaml
- name: Create Apache2 config
include_tasks: apache2_template.yaml
when: not nextcloud_nginx

33
tasks/packages.yaml Normal file
View File

@ -0,0 +1,33 @@
---
- name: Ensure Apache2 package is installed
ansible.builtin.package:
name: apache2
state: present
when: not nextcloud_nginx
- name: Ensure nginx package is installed
ansible.builtin.package:
name: nginx
state: present
when: nextcloud_nginx
- name: Ensure PHP package is installed
ansible.builtin.package:
name: php
state: present
- name: Ensure PHP module packages are installed
ansible.builtin.package:
name: "{{ item }}"
state: present
with_items:
- php-fpm
- php-curl
- php-xml
- php-gd
- php-mbstring
- php-zip
- php-mysql
- php-pgsql
- php-bz2
- php-redis