diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 22:37:38 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-21 22:37:38 -0500 |
commit | 39075e3be801d920f8ee52dc81f05ded1a4bfae7 (patch) | |
tree | 68021bb6f41252048df865d42c5addd4081d8cb5 /system/anacron/doinst.sh | |
parent | 519a4313931f4c380d4966ce5a5210760b4687e1 (diff) |
system/anacron: Removed (no maintainer)
Diffstat (limited to 'system/anacron/doinst.sh')
-rw-r--r-- | system/anacron/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/system/anacron/doinst.sh b/system/anacron/doinst.sh deleted file mode 100644 index b3c934f55cad9..0000000000000 --- a/system/anacron/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -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... -} -# List of configuration files (they should end in .new) - -config etc/anacrontab.new - |