summaryrefslogtreecommitdiff
path: root/private/php-pgsql/doinst.sh
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2021-04-29 09:29:46 +0200
committerEugen Wissner <belka@caraus.de>2021-05-01 10:03:11 +0200
commit146f486f0cac3af254bacc4851b19e69b75a5216 (patch)
treeed4c0a99acec75a6b8f1d893286e1eb6bf637be3 /private/php-pgsql/doinst.sh
parentb207ba9d3fd82565e34c6e2c1ce025fefde3ba1c (diff)
downloadslackbuilder-146f486f0cac3af254bacc4851b19e69b75a5216.tar.gz
php-pgsql: Removed
Updated SBo master.
Diffstat (limited to 'private/php-pgsql/doinst.sh')
-rw-r--r--private/php-pgsql/doinst.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/private/php-pgsql/doinst.sh b/private/php-pgsql/doinst.sh
deleted file mode 100644
index b4fdb0a..0000000
--- a/private/php-pgsql/doinst.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-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...
-}
-
-config etc/php.d/pgsql.ini.new
-config etc/php.d/pdo_pgsql.ini.new
-