34 lines
830 B
Bash
Executable File
34 lines
830 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while getopts "a:" opt; do
|
|
case $opt in
|
|
a)
|
|
ssh_alias=$OPTARG
|
|
;;
|
|
\?)
|
|
echo "Invalid option: -$OPTARG" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# Check if the alias is not empty
|
|
if [ -z "$ssh_alias" ]; then
|
|
echo "\033[31mPlease input an ssh alias. Usage: deploy.sh -a {ssh_alias}"
|
|
exit 1
|
|
fi
|
|
|
|
# Check if the build exists
|
|
if [ ! -f "build/out/distribution/qfixpt.gz" ]; then
|
|
echo "\033[31mFile build/out/distribution/qfixpt.gz does not exist. Run make build"
|
|
exit 1
|
|
fi
|
|
|
|
# Copy zipped binary
|
|
scp build/out/distribution/qfixpt.gz "$ssh_alias":/home/quantex/qfixpt/
|
|
|
|
# Unzip the binary. Then systemd restart it automatically on file change.
|
|
ssh "$ssh_alias" "chown quantex:quantex -R /home/quantex/qfixpt;chmod +x /home/quantex/qfixpt/unzip-qfixpt.sh; /home/quantex/qfixpt/unzip-qfixpt.sh"
|
|
|
|
|