summaryrefslogtreecommitdiffstats
path: root/extra/source/php8/doinst.sh
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-12-03 20:07:20 +0000
committer Eric Hameleers <alien@slackware.com>2021-12-04 08:59:57 +0100
commitc29dcfa2dd2e7467ea3b6b757880348884d8790d (patch)
treed3353da7e281a39e6edb2bde414c1bc228be5d6e /extra/source/php8/doinst.sh
parent66ba810196d8ce6f6da7df7931ce31e7303b8cf8 (diff)
downloadcurrent-c29dcfa2dd2e7467ea3b6b757880348884d8790d.tar.gz
current-c29dcfa2dd2e7467ea3b6b757880348884d8790d.tar.xz
Fri Dec 3 20:07:20 UTC 202120211203200720
ap/rpm-4.16.1.3-x86_64-4.txz: Rebuilt. Patched to handle non-compliant RPMs created by install4j. Thanks to alienBOB. d/poke-1.4-x86_64-1.txz: Upgraded. l/enchant-2.3.2-x86_64-1.txz: Upgraded. l/freetype-2.11.1-x86_64-1.txz: Upgraded. l/glib2-2.70.2-x86_64-1.txz: Upgraded. n/lynx-2.9.0dev.10-x86_64-1.txz: Upgraded. extra/php8/php8-8.1.0-x86_64-1.txz: Removed. extra/php80/php80-8.0.13-x86_64-1.txz: Added. extra/php81/php81-8.1.0-x86_64-1.txz: Added.
Diffstat (limited to 'extra/source/php8/doinst.sh')
-rw-r--r--extra/source/php8/doinst.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/extra/source/php8/doinst.sh b/extra/source/php8/doinst.sh
deleted file mode 100644
index dc5726e50..000000000
--- a/extra/source/php8/doinst.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-if [ "`cat etc/httpd/mod_php.conf 2> /dev/null`" = "" ]; then
- cp -a etc/httpd/mod_php.conf.new etc/httpd/mod_php.conf
-fi
-
-config() {
- NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-# Keep same perms on rc.php-fpm.new:
-if [ -e etc/rc.d/rc.php-fpm ]; then
- cp -a etc/rc.d/rc.php-fpm etc/rc.d/rc.php-fpm.new.incoming
- cat etc/rc.d/rc.php-fpm.new > etc/rc.d/rc.php-fpm.new.incoming
- mv etc/rc.d/rc.php-fpm.new.incoming etc/rc.d/rc.php-fpm.new
-fi
-config etc/rc.d/rc.php-fpm.new
-cp -a etc/php.ini-production etc/php.ini.new
-config etc/php.ini.new
-cp -a etc/php-fpm.conf.default etc/php-fpm.conf.new
-config etc/php-fpm.conf.new
-cp -a etc/php-fpm.d/www.conf.default etc/php-fpm.d/www.conf.new
-config etc/php-fpm.d/www.conf.new
-config etc/httpd/mod_php.conf.new