2017-01-25 18:52:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-01-26 12:50:56 +00:00
|
|
|
# [0] Exit if no argument
|
|
|
|
test $# -lt 1 && exit;
|
|
|
|
|
2017-01-25 18:52:51 +00:00
|
|
|
# [1] first install (install source code)
|
2017-01-26 14:40:45 +00:00
|
|
|
sh /home/sats/satsd/install-source;
|
2017-01-25 18:52:51 +00:00
|
|
|
|
|
|
|
# [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;
|
|
|
|
|