X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=rootsshsync;h=1a39d463494954d3f9f890a88a058345a86905d6;hb=e03e99848bc5fbc7ad527513e0aa4b0fc9c4d6fb;hp=c55014921b8af67fd2c8d4f3554feb64bfadb218;hpb=343a048be4b32d18540c6531048d2b9a006774ae;p=distro-setup diff --git a/rootsshsync b/rootsshsync index c550149..1a39d46 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/config ]]; then + echo missing $user_ssh_dir/config. 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