X-Git-Url: https://iankelling.org/git/?p=distro-setup;a=blobdiff_plain;f=keyscript-on;h=7950ebe9b9ca0e49f64e8154fba85faa77452ad9;hp=71e19f0500f16d519a6997892b47bc25bf88e8d2;hb=8a6b446c7e336596af614c853e1c6177e55a7983;hpb=aa5f34ec8f63eb7e893836f8c78890dbecf1373e diff --git a/keyscript-on b/keyscript-on index 71e19f0..7950ebe 100755 --- a/keyscript-on +++ b/keyscript-on @@ -23,21 +23,24 @@ if [[ $- != *i* ]]; then fi rootn=1 +sed="sed --follow-symlinks" + if [[ ! -e /tmp/keyscript-off ]]; then - if [[ $(sed -rn 's/^ID=(.*)/\1/p' /etc/os-release) == arch ]]; then + if [[ $($sed -rn 's/^ID=(.*)/\1/p' /etc/os-release) == arch ]]; then if ! grep -q '^\s*FILES=' /etc/mkinitcpio.conf; then - sed -ri --follow-symlinks 's/^#(\s*FILES=.*)/\1/' /etc/mkinitcpio.conf # uncomment + $sed -ri 's/^#(\s*FILES=.*)/\1/' /etc/mkinitcpio.conf # uncomment mkinitcpio -p linux fi else - if grep -q '/root/keyscript,' /etc/crypttab; then - sed -i --follow-symlinks 's#/root/keyscript-manual,#/root/keyscript,#' /etc/crypttab - update-initramfs -u + x=/root/keyscript + if grep -q "${x}-manual," /etc/crypttab; then + $sed -i "s#${x}-manual,#${x},#" /etc/crypttab + update-initramfs -u fi fi fi # switch to easy or hard login pass which is the same as luks f=/q/root/shadow/traci-simple -[[ $HOSTNAME != tp ]] || usermod -p "$(cat $f)" ian +[[ $HOSTNAME != tpnew ]] || usermod -p "$(cat $f)" iank echo "$0: finished. $(date)"