smlinux/base/fuse3/doinst.sh
PktSurf 1b56766367 Added argon2, boost, fmt, fuse3, libqalculate and qrencode to base
Upgraded base/openssl
Fixed stuff in base/polkit build file
Added libdazzle and libportal in gtk
Updated gtk section build list
2022-07-03 16:57:00 +05:30

24 lines
662 B
Bash

#!/bin/sh
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...
}
# Keep same perms on rc.fuse3.new:
if [ -e etc/rc.d/rc.fuse3 ]; then
cp -a etc/rc.d/rc.fuse3 etc/rc.d/rc.fuse3.new.incoming
cat etc/rc.d/rc.fuse3.new > etc/rc.d/rc.fuse3.new.incoming
mv etc/rc.d/rc.fuse3.new.incoming etc/rc.d/rc.fuse3.new
fi
config etc/rc.d/rc.fuse3.new
config etc/fuse.conf.new