10 lines
230 B
Plaintext
10 lines
230 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# [0] Check synced first
|
||
|
if [ ! -e /target/sync ]; then
|
||
|
exit 1;
|
||
|
fi;
|
||
|
|
||
|
# [1] Propagate script to UPDATE
|
||
|
/bin/bash /home/sats/satsd/source/update 2>> /home/sats/satsd/log/update.log >> /home/sats/satsd/log/update.log;
|