slackbuilds_ponce/system/binfmt-support/doinst.sh
Andrew Clemons 5760b351ea
system/binfmt-support: Added (Support scripts).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2019-06-15 06:52:37 +07:00

22 lines
452 B
Bash

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