diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2012-12-16 17:43:57 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-12-23 09:16:34 -0500 |
commit | 8a08a96ffd181bfb097b703d0f3413cd70af1952 (patch) | |
tree | 866c28726bd45bcc8cd2f04a3fc839487eb81710 /system/netatop/doinst.sh | |
parent | 64754355e36fddc1a3d090454ebb44fa796d4294 (diff) | |
download | slackbuilds-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.sh | 25 |
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 |