diff options
author | mario <mario@slackverse.org> | 2013-01-05 16:56:20 +0100 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2013-01-09 18:52:21 -0500 |
commit | f57720a5c78ac6788ce819acadef8b4b8e25bcc3 (patch) | |
tree | 39c55ebcc4bbe3b26fdc204c39f13891b22e0891 /libraries/php-ssh2/doinst.sh | |
parent | 3a309f52b82cf2c3e86f5ccf8bbbaeeb5f022e89 (diff) | |
download | slackbuilds-f57720a5c78ac6788ce819acadef8b4b8e25bcc3.tar.gz |
libraries/php-ssh2: Added (SSH2 bindings for PHP).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/php-ssh2/doinst.sh')
-rw-r--r-- | libraries/php-ssh2/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libraries/php-ssh2/doinst.sh b/libraries/php-ssh2/doinst.sh new file mode 100644 index 0000000000..e5760e7218 --- /dev/null +++ b/libraries/php-ssh2/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/ssh2.ini.new + |