mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 15:32:18 +00:00
12 lines
193 B
Bash
Executable file
12 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
key="$SSH_PUBLIC_KEY"
|
|
|
|
if test -z "$key"; then
|
|
echo "set SSH_PUBLIC_KEY environment variable first"
|
|
exit 1
|
|
fi
|
|
|
|
echo "$key" > /etc/ssh/authorized_keys
|
|
|
|
exec /usr/sbin/sshd -D
|