SATS/daemon

18 lines
389 B
Plaintext
Raw Normal View History

2017-01-26 13:23:50 +00:00
#!/bin/sh
ABSPATH=$( dirname $(realpath $0) );
2017-01-26 13:23:50 +00:00
source $ABSPATH/include/bash/const;
source $ABSPATH/include/bash/func;
2017-07-21 10:44:45 +00:00
# (1) Check synchronization done #
if [ ! -e /target/sync ]; then
slog "[!] not synced yet, aborting" - "daemon" && exit 127;
fi;
# (2) Get the list of etrees #
cat $ETREE_CONF | \
while read etree; do
sudo systemctl restart sats-feature@$ETREE_CONF.service;
done;