2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
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...
|
|
|
|
}
|
|
|
|
# Slackware scripts
|
|
|
|
config etc/inittab.new
|
|
|
|
config etc/rc.d/rc.4.new
|
|
|
|
config etc/rc.d/rc.6.new
|
|
|
|
config etc/rc.d/rc.K.new
|
|
|
|
config etc/rc.d/rc.M.new
|
|
|
|
config etc/rc.d/rc.S.new
|
2016-06-30 22:26:57 +02:00
|
|
|
config etc/rc.d/rc.cpufreq.new
|
2009-08-26 17:00:38 +02:00
|
|
|
config etc/rc.d/rc.local.new
|
2011-04-25 15:37:00 +02:00
|
|
|
config etc/rc.d/rc.loop.new
|
2009-08-26 17:00:38 +02:00
|
|
|
config etc/rc.d/rc.sysvinit.new
|
2016-06-30 22:26:57 +02:00
|
|
|
config etc/rc.d/rc.modules.new
|
|
|
|
config etc/rc.d/rc.modules.local.new
|
2018-09-06 08:15:46 +02:00
|
|
|
config etc/default/cpufreq.new
|
2023-05-25 02:24:33 +02:00
|
|
|
config etc/default/efivarfs.new
|
2024-05-28 20:08:19 +02:00
|
|
|
config etc/default/zram.new
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
( cd etc/rc.d ; rm -rf rc.0 )
|
|
|
|
( cd etc/rc.d ; ln -sf rc.6 rc.0 )
|
|
|
|
|