diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2019-06-15 06:52:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-06-15 06:52:37 +0700 |
commit | 5760b351ea46edb7fcaeedc50b40d44618da9991 (patch) | |
tree | 50b486855b448e3bdc5e47846c9ee88947625674 /system/binfmt-support/doinst.sh | |
parent | cc1f5a2d10b93f346ce7aed80ae1f6c036d49744 (diff) |
system/binfmt-support: Added (Support scripts).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/binfmt-support/doinst.sh')
-rw-r--r-- | system/binfmt-support/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/system/binfmt-support/doinst.sh b/system/binfmt-support/doinst.sh new file mode 100644 index 0000000000000..36b62594cd8d8 --- /dev/null +++ b/system/binfmt-support/doinst.sh @@ -0,0 +1,22 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + rm $NEW + fi +} + +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.binfmt-support.new |