diff options
author | Richard Narron <richard@aaazen.com> | 2014-08-07 13:08:12 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-07 13:08:46 +0700 |
commit | ed73b57964157ec624e06d7dbf2270a168e4ab73 (patch) | |
tree | 129e83263a9fab19346e3f82002400a477638244 /system/fcron/doinst.sh | |
parent | b44e0e2f9b81b09c16538dd78de42541f76f6105 (diff) |
system/fcron: Added (periodical command scheduler).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/fcron/doinst.sh')
-rw-r--r-- | system/fcron/doinst.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/system/fcron/doinst.sh b/system/fcron/doinst.sh new file mode 100644 index 000000000000..d8651841e8bd --- /dev/null +++ b/system/fcron/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... +} + +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.fcron.new +config etc/fcron.conf.new +config etc/fcron.allow +config etc/fcron.deny |