diff --git a/CHANGELOG.md b/CHANGELOG.md index 53feb52e..0d3cb6ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ The **patch** part changes incrementally at each release. * mysql: activate binary logs by specifying log_bin path * mysql: specify a custom server_id * mysql: option to define as read only +* packweb-apache: Install zip & unzip by default ### Changed diff --git a/packweb-apache/tasks/main.yml b/packweb-apache/tasks/main.yml index 9c36c888..922dcea8 100644 --- a/packweb-apache/tasks/main.yml +++ b/packweb-apache/tasks/main.yml @@ -5,6 +5,13 @@ when: - ansible_distribution != "Debian" or ansible_distribution_major_version is version('8', '<') +- name: Additional packages are installed + apt: + name: + - zip + - unzip + state: present + - name: install info.php copy: src: info.php