]> freie-schul-it.de Git - fsit_smgt.git/blob - tasks/piwigo.yml
added kivitendo task server as service
[fsit_smgt.git] / tasks / piwigo.yml
1 ---
2 - name: Install server specific packages
3 ansible.builtin.apt:
4 pkg:
5 - apache2
6 - mariadb-server
7 - mariadb-client
8 - libapache2-mod-php
9 - imagemagick
10 - php-common
11 - php-intl
12 - php-mysql
13 - php-gd
14 - php-xml
15 - php-ldap
16 - php-zip
17 - php-mbstring
18 - php-xmlrpc
19 - php-cli
20 - php-curl
21 - unzip
22
23 - name: Download Piwigo latest zip
24 ansible.builtin.get_url:
25 url: https://piwigo.org/download/dlcounter.php?code=latest
26 dest: /home/ansible/piwigo-latest.zip
27 owner: ansible
28 group: ansible
29