diff options
author | Michael Connolly <connollymp3000@gmail.com> | 2013-10-29 18:58:11 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-10-29 20:12:29 -0500 |
commit | 329d7a0c404e4f4cad3e4fb062e8efc1cfcec604 (patch) | |
tree | c6fe2b61c9752f687bf98e0cdfd6b81701b537b8 /network/pgl/doinst.sh | |
parent | 66aedcae64489759b473e6bdaa0ff6950d7abbf0 (diff) |
network/pgl: Added (Peer Guardian Linux).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/pgl/doinst.sh')
-rw-r--r-- | network/pgl/doinst.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/network/pgl/doinst.sh b/network/pgl/doinst.sh new file mode 100644 index 0000000000000..a526f2af13e9a --- /dev/null +++ b/network/pgl/doinst.sh @@ -0,0 +1,30 @@ +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.pgl.new +config etc/pgl/pglcmd.conf.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi |