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/inittab.new BACKUP_FILE=(openrc/rc.conf logrotate.d/openrc) BACKUP_CONF=(agetty bootmisc consolefont devfs dmesg fsck hostname hwclock keymaps killprocs localmount modules mtab net-online netmount network staticroute swap) for file in "${BACKUP_FILE[@]}"; do config "etc/${file}.new" done for file in "${BACKUP_CONF[@]}"; do config "etc/openrc/conf.d/${file}.new" done # symlink only the needed OpenRC PAM configs if [ ! -L etc/pam.d/start-stop-daemon ]; then ln -sf /etc/openrc/pam.d/start-stop-daemon etc/pam.d/start-stop-daemon fi if [ ! -L etc/pam.d/supervise-daemon ]; then ln -sf /etc/openrc/pam.d/supervise-daemon etc/pam.d/supervise-daemon fi # make sure to give openrc access to our Slackware hostname file [ ! -e etc/openrc/hostname ] && ln -s /etc/HOSTNAME etc/openrc/hostname # enable cgroups service as required by openrc 0.35+ [ ! -e etc/openrc/runlevels/sysinit/cgroups ] && ln -s /etc/openrc/init.d/cgroups etc/openrc/runlevels/sysinit/cgroups [ ! -e etc/openrc/runlevels/boot/elogind ] && ln -s /etc/openrc/init.d/elogind etc/openrc/runlevels/boot/elogind # enable save keymaps and termencoding services as needed by openrc 0.40+ [ ! -e etc/openrc/runlevels/boot/save-keymaps ] && ln -s /etc/openrc/init.d/save-keymaps etc/openrc/runlevels/boot/save-keymaps [ ! -e etc/openrc/runlevels/boot/save-termencoding ] && ln -s /etc/openrc/init.d/save-termencoding etc/openrc/runlevels/boot/save-termencoding for f in /etc/pam.d/system-auth /etc/pam.d/login /etc/pam.d/sshd /etc/pam.d/su /etc/pam.d/sddm; do [[ -f "$f" ]] || continue # Backup the file cp "$f" "$f.bak.$(date +%F-%H%M%S)" # Append pam_openrc.so only if it is not already present grep -q "pam_openrc.so" "$f" || echo "session optional pam_openrc.so" >> "$f" done # Create OpenRC user service symlinks for each valid user in /etc/passwd awk -F: '/\/home\// && $1 != "ftp" && $7 ~ /(bash|zsh|fish|sh)$/ {print $1}' /etc/passwd | while read -r username; do ln -sf /etc/openrc/init.d/user "etc/openrc/init.d/user.${username}" done