diff options
author | Andy Alt <andy400-dev@yahoo.com> | 2019-08-10 01:28:50 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-08-10 01:28:50 +0700 |
commit | ad23967f09c05c8053f2cdfa417e8a34816634ac (patch) | |
tree | faaaf031e436b843c55829715a0ee7f99bcadbf8 /system/rmw/doinst.sh | |
parent | 5c892d971b7ddf69670fc13660611448edc44430 (diff) |
system/rmw: Updated for version 0.7.03.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/rmw/doinst.sh')
-rw-r--r-- | system/rmw/doinst.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/system/rmw/doinst.sh b/system/rmw/doinst.sh deleted file mode 100644 index a8f047556c7c5..0000000000000 --- a/system/rmw/doinst.sh +++ /dev/null @@ -1,12 +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... -} -config etc/rmwrc.new |