diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d3cb6ba..2b83ee54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The **patch** part changes incrementally at each release. * mysql: specify a custom server_id * mysql: option to define as read only * packweb-apache: Install zip & unzip by default +* php: Install php-sqlite by default ### Changed diff --git a/php/tasks/main_buster.yml b/php/tasks/main_buster.yml index 240f9b54..16eed389 100644 --- a/php/tasks/main_buster.yml +++ b/php/tasks/main_buster.yml @@ -27,6 +27,7 @@ - php-mysql # php-mcrypt is no longer packaged for PHP 7.2 - php-pgsql + - php-sqlite3 - php-gettext - php-curl - php-ssh2 @@ -76,7 +77,7 @@ - include: config_fpm.yml when: php_fpm_enable - + - name: Enforce permissions on PHP fpm directory file: dest: /etc/php/7.3/fpm @@ -85,7 +86,7 @@ - include: config_apache.yml when: php_apache_enable - + - name: Enforce permissions on PHP apache2 directory file: dest: /etc/php/7.3/apache2 diff --git a/php/tasks/main_jessie.yml b/php/tasks/main_jessie.yml index fdeed8c8..8e99280c 100644 --- a/php/tasks/main_jessie.yml +++ b/php/tasks/main_jessie.yml @@ -26,6 +26,7 @@ - php5-mcrypt - "{{ php_modules_mysqlnd | bool | ternary('php5-mysqlnd','php5-mysql') }}" - php5-pgsql + - php5-sqlite - php-gettext - php5-intl - php5-curl diff --git a/php/tasks/main_stretch.yml b/php/tasks/main_stretch.yml index 75f69ab0..136fa346 100644 --- a/php/tasks/main_stretch.yml +++ b/php/tasks/main_stretch.yml @@ -26,6 +26,7 @@ - php-ldap - "{{ php_modules_mysqlnd | bool | ternary('php-mysqlnd','php-mysql') }}" - php-pgsql + - php-sqlite3 # php-mcrypt is no longer packaged for PHP 7.2 - php-gettext - php-curl @@ -77,7 +78,7 @@ - include: config_fpm.yml when: php_fpm_enable - + - name: Enforce permissions on PHP fpm directory file: dest: /etc/php/7.0/fpm @@ -86,7 +87,7 @@ - include: config_apache.yml when: php_apache_enable - + - name: Enforce permissions on PHP apache2 directory file: dest: /etc/php/7.0/apache2