SPLServer/scripts/push_file.sh
TudbuT 35ae6b7f35
All checks were successful
/ Build BaseBand SPLServer (push) Successful in 15s
Initial commit
2024-10-14 02:53:26 +02:00

10 lines
No EOL
370 B
Bash

#!/bin/bash
# DO NOT RUN THIS MANUALLY. PUSH TO RELEASE INSTEAD. ( <- unless there is an emergency.)
echo "$SSH_PRIVATEKEY" > ssh_key
chmod 700 ssh_key
scp -o StrictHostKeyChecking=no -i ssh_key -P "$BB_PORT" "$1" "root@$BB_HOST:$BB_PATH" &&
(ssh -o StrictHostKeyChecking=no -i ssh_key -p "$BB_PORT" "root@$BB_HOST" "cd $BB_PATH && bash reload.sh" || true)
rm ssh_key