From f728ad6b39a5ef272efb0e2f667c0e1030485c37 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Mon, 18 Nov 2013 23:01:24 -0600 Subject: 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 --- network/ike/doinst.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 network/ike/doinst.sh (limited to 'network/ike/doinst.sh') 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 -- cgit v1.2.3