Merge pull request #7 from yapishu/patch-1

Add linebreak between multiple import pubkeys
This commit is contained in:
Glenn Y. Rolland 2023-02-03 19:41:26 +01:00 committed by GitHub
commit c3b8ebe0ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,7 @@ rm -f /home/user/.ssh/authorized_keys
for key in /docker/keys/*.pub ; do
echo "- adding key $key"
cat $key >> /home/user/.ssh/authorized_keys
printf \\\n >> /home/user/.ssh/authorized_keys
done
chown -R user /home/user/.ssh