18 lines
389 B
Bash
Executable File
18 lines
389 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ABSPATH=$( dirname $(realpath $0) );
|
|
|
|
source $ABSPATH/include/bash/const;
|
|
source $ABSPATH/include/bash/func;
|
|
|
|
# (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;
|