diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-07-18 02:45:21 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-07-19 16:23:33 +0700 |
commit | f3e99ced6c7e7feb8cc9b37d47332a63540358a5 (patch) | |
tree | adcc635741212d5b1c57061ff6b5ce98b376e3bd /network/msn-proxy/doinst.sh | |
parent | a845cef355b0eaa313fc56262b340ec38057e595 (diff) |
network/msn-proxy: Removed (MSN Messenger is long dead)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/msn-proxy/doinst.sh')
-rw-r--r-- | network/msn-proxy/doinst.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/network/msn-proxy/doinst.sh b/network/msn-proxy/doinst.sh deleted file mode 100644 index 4431a61b7cbbf..0000000000000 --- a/network/msn-proxy/doinst.sh +++ /dev/null @@ -1,17 +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/msn-proxy/msn-proxy.conf.new -config etc/msn-proxy/mysql/conf.new -config etc/msn-proxy/mysql.inc.php.new - |