X-Git-Url: https://iankelling.org/git/?p=distro-setup;a=blobdiff_plain;f=rootsshsync;h=668f8a3d7ed931ea2a65130c050b9c7e9326ca66;hp=c55014921b8af67fd2c8d4f3554feb64bfadb218;hb=79b274fcd8bfa556133ab13270e84b40aebe8468;hpb=343a048be4b32d18540c6531048d2b9a006774ae diff --git a/rootsshsync b/rootsshsync index c550149..668f8a3 100755 --- a/rootsshsync +++ b/rootsshsync @@ -27,7 +27,16 @@ fi mkdir -p $dest chmod 700 $dest -user_ssh_dir=$(eval echo ~${SUDO_USER:-$USER})/.ssh +user=$(id -un) +if [[ $SUDO_USER ]]; then + user=$SUDO_USER +fi + +user_ssh_dir=$(eval echo ~$user)/.ssh +if [[ ! -s $user_ssh_dir/authorized_keys ]]; then + echo missing $user_ssh_dir/authorized_keys. bad sign. bailing >&2 + exit 1 +fi # remove broken links, or else rsync has error about them. find $user_ssh_dir -xtype l -exec rm '{}' \; @@ -35,10 +44,13 @@ find $user_ssh_dir -xtype l -exec rm '{}' \; # -L resolve links rsync -rtL --delete $user_ssh_dir/ $dest chown -R root:root /root/.ssh + + d=/etc/initramfs-tools if [[ -e $d ]] && ! diff -q /root/.ssh/authorized_keys $d/root/.ssh/authorized_keys &>/dev/null; then - mkdir -p /etc/initramfs-tools/root/.ssh + mkdir -p $d/root/.ssh /etc/dropbear-initramfs chmod 700 $d/root $d/root/.ssh cp -p /root/.ssh/authorized_keys $d/root/.ssh/authorized_keys + cp -p /root/.ssh/authorized_keys /etc/dropbear-initramfs update-initramfs -u -k all fi