diff options
| author | Davi Antônio da Silva Santos <antoniossdavi@gmail.com> | 2025-09-05 00:40:47 +0000 |
|---|---|---|
| committer | Davi Antônio da Silva Santos <antoniossdavi@gmail.com> | 2025-09-05 00:40:47 +0000 |
| commit | 253fcbf02fe2efe6a1f3ff012346615d7e314734 (patch) | |
| tree | 8ed60ff50fdf300fc1d8dad103f58247540d1030 /debian/boca-web.postinst | |
| parent | 5fc96ef60317e683f71665603fb725461063f815 (diff) | |
| download | boca-253fcbf02fe2efe6a1f3ff012346615d7e314734.tar.gz boca-253fcbf02fe2efe6a1f3ff012346615d7e314734.zip | |
fix: patch jail creation for Ubuntu Noble
- Update php dependencies to PHP 8.3
- Update the source code to inform version 1.5.23
- Update boca-web maintainer script for PHP 8.3
- Adds Ubuntu mirror to the standard jail
- Patch standard jail fixing debootstrap problems with Ubuntu noble
- Purge the unecessary packages in the jail
- Perform a dist-upgrade after updating the jail
- Quote shell variables o prevent suprise splitting
- Replace obsolete backticks with `$( )`
- Modernise test commands, replacing `[ ]` with `[[ ]]`
Diffstat (limited to 'debian/boca-web.postinst')
| -rw-r--r-- | debian/boca-web.postinst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/boca-web.postinst b/debian/boca-web.postinst index 091905b..460778d 100644 --- a/debian/boca-web.postinst +++ b/debian/boca-web.postinst @@ -36,7 +36,8 @@ a2enmod socache_shmcb a2enmod proxy_fcgi setenvif # Enable php-fpm module for apache -a2enconf php8.1-fpm +# ALWAYS check for unexpected PHP 8 point releases!!! +a2enconf php8.3-fpm # Check the syntax of apache2's configuration file # This DOES NOT CATCH ALL ERRORS |