diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2012-06-25 22:17:51 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-06-25 22:17:51 -0400 |
commit | c4b2dcda0cf61d95c191b832c05d52ae5695e0b7 (patch) | |
tree | 016776ebab1fd8c8e12529d246879f32346d0658 /libraries/php-pgsql/doinst.sh | |
parent | a572c88c3f387c43e375a61771105d66d4bff538 (diff) |
libraries/php-pgsql: Added (PostgreSQL bindings for PHP)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/php-pgsql/doinst.sh')
-rw-r--r-- | libraries/php-pgsql/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libraries/php-pgsql/doinst.sh b/libraries/php-pgsql/doinst.sh new file mode 100644 index 0000000000000..1e20fdfdda3e1 --- /dev/null +++ b/libraries/php-pgsql/doinst.sh @@ -0,0 +1,15 @@ +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/pgsql.ini.new + |