diff --git a/daemon b/daemon index ba3b892..da4bf36 100755 --- a/daemon +++ b/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;