mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
11 lines
228 B
Bash
11 lines
228 B
Bash
set -o errexit
|
|
set -o pipefail
|
|
|
|
if [ $NODE_ENV == 'production' ]; then
|
|
# Deploy key for private npm modules
|
|
mkdir -p /root/.ssh
|
|
cp deploy_key /root/.ssh/id_rsa
|
|
chmod 400 /root/.ssh/id_rsa
|
|
cp ssh_config /root/.ssh/config
|
|
fi
|