Add linebreak between multiple import pubkeys

This commit is contained in:
reid 2022-11-23 22:34:42 -06:00 committed by GitHub
parent 0934b25a18
commit c0450dcbd8
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