2015-05-29 16:42:54 +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...
|
|
|
|
}
|
|
|
|
|
2015-06-05 15:51:53 +02:00
|
|
|
BACKUP_FILE=(inittab rc.conf logrotate.d/openrc)
|
2017-05-17 19:12:20 +02:00
|
|
|
BACKUP_CONF=(bootmisc consolefont devfs dmesg fsck hostname hwclock keymaps killprocs localmount modules mtab net-online netmount network staticroute swap urandom)
|
2015-06-05 15:51:53 +02:00
|
|
|
|
|
|
|
for file in "${BACKUP_FILE[@]}"; do
|
|
|
|
config "etc/${file}.new"
|
2015-05-29 16:42:54 +02:00
|
|
|
done
|
|
|
|
|
2015-06-05 15:51:53 +02:00
|
|
|
for file in "${BACKUP_CONF[@]}"; do
|
|
|
|
config "etc/conf.d/${file}.new"
|
|
|
|
done
|
2018-03-25 08:10:27 +02:00
|
|
|
|
|
|
|
# enable cgroups service as required by openrc 0.35+
|
|
|
|
[ ! -e etc/runlevels/sysinit/cgroups ] && /sbin/rc-update add cgroups sysinit
|