woodpecker-scp/plugin.sh

8 lines
269 B
Bash
Raw Permalink Normal View History

2023-12-29 10:33:01 +00:00
#!/bin/sh
mkdir -p /root/.ssh
echo "${PLUGIN_SSH_KEY}" > "/root/.ssh/id_rsa"
2023-12-29 12:20:31 +00:00
chmod 0600 /root/.ssh/id_rsa
2023-12-29 10:33:01 +00:00
echo "${PLUGIN_SSH_KNOWN_HOSTS}" > "/root/.ssh/known_hosts"
2023-12-29 12:20:31 +00:00
chmod 0600 /root/.ssh/known_hosts
scp -Bv ${PLUGIN_EXTRA_FLAGS} ${PLUGIN_SOURCE} ${PLUGIN_DESTINATION}