25 lines
611 B
Plaintext
25 lines
611 B
Plaintext
#set ssh_keys = $getVar("push_ssh_keys", "/root/.ssh/id_rsa.pub")
|
|
#if $ssh_keys != ""
|
|
mkdir -p /root/.ssh
|
|
chmod 700 -R /root/.ssh
|
|
#set $firstline = True
|
|
#for $ssh_key in $ssh_keys.split(',')
|
|
#if not $ssh_key
|
|
#continue
|
|
#end if
|
|
#set f = $open($ssh_key)
|
|
#if $firstline
|
|
cat << EOL > /root/.ssh/authorized_keys
|
|
#echo $f.read()
|
|
EOL
|
|
#else
|
|
cat << EOL >> /root/.ssh/authorized_keys
|
|
#echo $f.read()
|
|
EOL
|
|
#end if
|
|
#silent $f.close()
|
|
#set $firstline = False
|
|
#end for
|
|
chmod 600 /root/.ssh/authorized_keys
|
|
#end if
|