mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-25 06:15:56 +01:00
12 lines
310 B
Plaintext
12 lines
310 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "--> Turn off StrictKeyChecking"
|
||
|
cat > /etc/ssh/ssh_config <<EOF
|
||
|
Host *
|
||
|
StrictHostKeyChecking no
|
||
|
UserKnownHostsFile=/dev/null
|
||
|
EOF
|
||
|
|
||
|
echo "--> Install Semaphore entrypoint wrapper script"
|
||
|
mv ./deployment/docker/common/semaphore-wrapper /usr/local/bin/semaphore-wrapper
|
||
|
task deps
|