aboutsummaryrefslogtreecommitdiff
path: root/network/gogoc/doinst.sh
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2012-09-23 12:58:57 -0500
committerRobby Workman <rworkman@slackbuilds.org>2012-09-28 21:36:02 -0500
commite196cc5d04965dc652a0095a8c01fa7662ae9a8c (patch)
treea1550e81984fa4ffe5b01fa3b789536b91e69810 /network/gogoc/doinst.sh
parentffc1f1f606279abbe9537fd4108edd289c1625f1 (diff)
network/gogoc: Removed (see remainder of commit message)
From: Willy Sudiarto Raharjo <willysr@gmail.com> Subject: gogoc Date: Sun, 23 Sep 2012 21:04:22 +0700 I wanted to test gogoc, but i didn't find the upstream URL on the gogoc.info i searched the Internet and found this http://www.gogo6.com/profile/gogoCLIENT, but it requires login to download the application Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/gogoc/doinst.sh')
-rw-r--r--network/gogoc/doinst.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/network/gogoc/doinst.sh b/network/gogoc/doinst.sh
deleted file mode 100644
index bcbe2d5df5aa6..0000000000000
--- a/network/gogoc/doinst.sh
+++ /dev/null
@@ -1,26 +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.gogoc.new
-config etc/gogoc.conf.new