diff options
author | Menno E. Duursma <druiloor@zonnet.nl> | 2010-05-11 20:01:53 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:53 +0200 |
commit | efd5c4148c23b71a6e8c5ce8ba6b16ae48d15ae3 (patch) | |
tree | 51d55b6c96708e71ed96a073f28a67db274f6199 /system/atop/doinst.sh | |
parent | b0d02a1f054fc4dbc9a57daa91db213e3abe2180 (diff) | |
download | slackbuilds-efd5c4148c23b71a6e8c5ce8ba6b16ae48d15ae3.tar.gz |
system/atop: Added to 12.0 repository
Diffstat (limited to 'system/atop/doinst.sh')
-rw-r--r-- | system/atop/doinst.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/system/atop/doinst.sh b/system/atop/doinst.sh new file mode 100644 index 0000000000..134b712414 --- /dev/null +++ b/system/atop/doinst.sh @@ -0,0 +1,28 @@ +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... +} + +# Keep same perms on rc.atop.new: +if [ -e etc/rc.d/rc.atop ]; then + cp -a etc/rc.d/rc.atop etc/rc.d/rc.atop.new.incoming + cat etc/rc.d/rc.atop.new > etc/rc.d/rc.atop.new.incoming + mv etc/rc.d/rc.atop.new.incoming etc/rc.d/rc.atop.new +fi + +config etc/rc.d/rc.atop.new +config etc/cron.daily/atop.new +config etc/logrotate.d/psacct.new +config etc/logrotate.d/psaccs_atop.new +config etc/logrotate.d/psaccu_atop.new + +touch var/log/atop/daily.log + |