From 151f3284a0bf3a551ad0c79b6a63b761b39b3f84 Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Wed, 14 May 2008 22:27:10 +0100 Subject: [PATCH] ahem, we need to actually look in the host subdir --- ud-replicate | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ud-replicate b/ud-replicate index 2e99d75..202d4b8 100755 --- a/ud-replicate +++ b/ud-replicate @@ -76,12 +76,14 @@ done ln -sf `pwd -P`/ssh-rsa-shadow /etc/ssh ln -sf `pwd -P`/ssh_known_hosts /etc/ssh -if [ -e ssh-keys.tar.gz ]; then +if [ -e ${HOST}/ssh-keys.tar.gz ]; then export TMPDIR='/tmp/' tempdir=$(mktemp -d) old=$(pwd -P) - cd $tempdir && tar -xvf $old/ssh-keys.tar.gz + cd $tempdir && tar -xvf ${old}/${HOST}/ssh-keys.tar.gz + cd old mkdir userkeys 2> /dev/null || true + chmod 755 $tempdir rsync -av --delete-after $tempdir/ userkeys/ fi -- 2.20.1