mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-25 13:58:02 -05:00
48 lines
931 B
Bash
48 lines
931 B
Bash
#!/bin/bash
|
|
# Work around for Cron:
|
|
USER=coolprop
|
|
source /home/$USER/.bash_profile
|
|
source /home/$USER/buildbot/server-master-sandbox/bin/activate
|
|
#
|
|
function start {
|
|
buildbot start /home/$USER/buildbot/server-master/
|
|
}
|
|
function reconfig {
|
|
buildbot reconfig /home/$USER/buildbot/server-master/
|
|
}
|
|
function git_pull {
|
|
pushd /home/$USER/buildbot/CoolProp.git
|
|
git pull
|
|
popd
|
|
}
|
|
function stop {
|
|
# PID=$(ps aux | grep -m 1 'python=buildbot.tac' | tr -s " " | cut -d " " -s -f 2)
|
|
# if [ "$PID" -eq "$PID" ] 2>/dev/null; then
|
|
# echo "Killing $PID"
|
|
# kill $PID
|
|
# fi
|
|
buildbot stop /home/$USER/buildbot/server-master/
|
|
}
|
|
#
|
|
# Check for input
|
|
CMD="$1"
|
|
if [ "$CMD" = "restart" ]; then
|
|
stop
|
|
git_pull
|
|
start
|
|
elif [ "$CMD" = "reconfig" ]; then
|
|
git_pull
|
|
reconfig
|
|
elif [ "$CMD" = "start" ]; then
|
|
git_pull
|
|
start
|
|
elif [ "$CMD" = "stop" ]; then
|
|
stop
|
|
else
|
|
git_pull
|
|
start
|
|
fi
|
|
#
|
|
echo "Script executed, terminating"
|
|
exit 0
|