setup/clone/utility/sats-loop

20 lines
446 B
Plaintext
Raw Normal View History

#!/bin/sh
2017-01-26 12:50:56 +00:00
# [0] Exit if no argument
test $# -lt 1 && exit;
# [1] first install (install source code)
2017-01-26 14:40:45 +00:00
sh /home/sats/satsd/install-source;
# [2] Propagate script
2017-01-26 12:50:56 +00:00
if [ "$1" = "daemon" ]; then
2017-01-26 14:50:16 +00:00
sh /home/sats/satsd/source/daemon 2>> /home/sats/satsd/log/daemon.log >> /home/sats/satsd/log/daemon.log;
2017-01-26 12:50:56 +00:00
elif [ "$1" = "update" ]; then
sh /home/sats/satsd/source/update 2>> /home/sats/satsd/log/update.log >> /home/sats/satsd/log/update.log;
fi;