aboutsummaryrefslogtreecommitdiff
path: root/system/binfmt-support/doinst.sh
diff options
context:
space:
mode:
authorAndrew Clemons <andrew.clemons@gmail.com>2019-06-15 06:52:37 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-06-15 06:52:37 +0700
commit5760b351ea46edb7fcaeedc50b40d44618da9991 (patch)
tree50b486855b448e3bdc5e47846c9ee88947625674 /system/binfmt-support/doinst.sh
parentcc1f5a2d10b93f346ce7aed80ae1f6c036d49744 (diff)
downloadslackbuilds-5760b351ea46edb7fcaeedc50b40d44618da9991.tar.xz
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.sh22
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 000000000000..36b62594cd8d
--- /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