mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
9 lines
128 B
Bash
9 lines
128 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
echo "Copy public ssh keys to authorized_keys"
|
||
|
for f in /mnt/*.pub
|
||
|
do
|
||
|
cat $f >> /root/.ssh/authorized_keys
|
||
|
|
||
|
done
|