compass-adapters/cobbler/snippets/preseed_ssh

26 lines
682 B
Plaintext

sed -i 's/PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config
#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 << EOF > /root/.ssh/authorized_keys
#echo $f.read()
EOF
#else
cat << EOF >> /root/.ssh/authorized_keys
#echo $f.read()
EOF
#end if
#set $firstline = False
#silent $f.close()
#end for
chmod 600 /root/.ssh/authorized_keys
#end if