diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 16:01:27 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 16:01:27 -0500 |
commit | 4a326b2438b7329cb9a4c7898281e2a94f237d47 (patch) | |
tree | 94c101e0b54ab02921a684dc0d02ec3502b448e7 /libraries/php-ssh2/doinst.sh | |
parent | c79f9d79798f01e7ddcb1f3fd3693f32d1917993 (diff) | |
download | slackbuilds-4a326b2438b7329cb9a4c7898281e2a94f237d47.tar.gz |
libraries/php-ssh2: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006570.html
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/php-ssh2/doinst.sh')
-rw-r--r-- | libraries/php-ssh2/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libraries/php-ssh2/doinst.sh b/libraries/php-ssh2/doinst.sh deleted file mode 100644 index b8417cfb61..0000000000 --- a/libraries/php-ssh2/doinst.sh +++ /dev/null @@ -1,15 +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/ssh2.ini.new - |