diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-05 20:34:41 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-06 15:47:07 +0700 |
commit | 535ae1681e867de553934cfb2a82cbb673689f75 (patch) | |
tree | 4305518a7451b031a5853a026c2cf421228500b2 /libraries/php-mssql/doinst.sh | |
parent | b7a248b6c7a6f872b0681714e4ff8df51196d004 (diff) |
libraries/php-mssql: Removed (no more mssql ext in php 7.4.x).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/php-mssql/doinst.sh')
-rw-r--r-- | libraries/php-mssql/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libraries/php-mssql/doinst.sh b/libraries/php-mssql/doinst.sh deleted file mode 100644 index 808ef73b72..0000000000 --- a/libraries/php-mssql/doinst.sh +++ /dev/null @@ -1,14 +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/mssql.ini.new |