2017-01-25 18:52:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-05-08 14:22:11 +00:00
|
|
|
# [0] Check installed first
|
|
|
|
if [ ! -e /target/install ]; then
|
|
|
|
exit 1;
|
2017-01-26 12:50:56 +00:00
|
|
|
fi;
|
|
|
|
|
2017-05-08 14:22:11 +00:00
|
|
|
# [1] Propagate script to DAEMON
|
|
|
|
/bin/bash /home/sats/satsd/source/daemon 2>> /home/sats/satsd/log/daemon.log >> /home/sats/satsd/log/daemon.log;
|