summaryrefslogtreecommitdiffstats
path: root/system/netatop/doinst.sh
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2012-12-16 23:43:57 +0100
committer dsomero2012-12-23 15:16:34 +0100
commit8a08a96ffd181bfb097b703d0f3413cd70af1952 (patch)
tree866c28726bd45bcc8cd2f04a3fc839487eb81710 /system/netatop/doinst.sh
parent64754355e36fddc1a3d090454ebb44fa796d4294 (diff)
downloadslackbuilds-8a08a96ffd181bfb097b703d0f3413cd70af1952.tar.gz
system/netatop: Added (kernel module)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/netatop/doinst.sh')
-rw-r--r--system/netatop/doinst.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/system/netatop/doinst.sh b/system/netatop/doinst.sh
new file mode 100644
index 0000000000..2dfba6dcad
--- /dev/null
+++ b/system/netatop/doinst.sh
@@ -0,0 +1,25 @@
+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.netatopd.new