Fixed daemon script
This commit is contained in:
parent
6b8fd0f8a0
commit
b6f3852e32
8
daemon
8
daemon
|
@ -1,9 +1,9 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
ABSPATH=$( dirname $(realpath $0) );
|
||||
|
||||
source $ABSPATH/include/bash/const;
|
||||
source $ABSPATH/include/bash/func;
|
||||
source $ABSPATH/lib/include/bash/const;
|
||||
source $ABSPATH/lib/include/bash/func;
|
||||
|
||||
# (1) Check synchronization done #
|
||||
if [ ! -e /target/sync ]; then
|
||||
|
@ -13,5 +13,5 @@ fi;
|
|||
# (2) Get the list of etrees #
|
||||
cat $ETREE_CONF | \
|
||||
while read etree; do
|
||||
sudo systemctl restart sats-feature@$ETREE_CONF.service;
|
||||
sudo systemctl restart sats-feature@$etree.service;
|
||||
done;
|
||||
|
|
Loading…
Reference in New Issue