diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-11-18 23:01:24 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-22 00:09:07 -0600 |
commit | f728ad6b39a5ef272efb0e2f667c0e1030485c37 (patch) | |
tree | a193e6435d843a2c08b16ea0542b5ce41dfded3e /network/ike/doinst.sh | |
parent | bc7e3e4d5cad4aa912bfeb7db4d38327746bee2e (diff) | |
download | slackbuilds-f728ad6b39a5ef272efb0e2f667c0e1030485c37.tar.gz |
network/ike: Removed (build failure)
If upstream still hasn't bothered to port this to qt4, then
I have to wonder why we're still dragging the corpse along.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/ike/doinst.sh')
-rw-r--r-- | network/ike/doinst.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/network/ike/doinst.sh b/network/ike/doinst.sh deleted file mode 100644 index 5aec9cdf53..0000000000 --- a/network/ike/doinst.sh +++ /dev/null @@ -1,30 +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... -} - -preserve_perms() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - if [ -e $OLD ]; then - cp -a $OLD ${NEW}.incoming - cat $NEW > ${NEW}.incoming - mv ${NEW}.incoming $NEW - fi - config $NEW -} - -preserve_perms etc/rc.d/rc.iked.new -config etc/iked.conf.new - -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi |