smlinux/net/irssi/doinst.sh
PktSurf f14cfce65d Added doinst.sh to net/irssi to preserve /etc/irssi.conf
Discarded old patch and added a new one to net/wireless-tools and fixed its build file
2024-11-01 21:11:19 +05:30

13 lines
370 B
Bash

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/irssi.conf.new