Managing locally /target/sync
This commit is contained in:
parent
0bf05fe763
commit
6ea77ddd9f
5
daemon
5
daemon
|
@ -2,4 +2,9 @@
|
||||||
|
|
||||||
ABSPATH=$( dirname $(realpath $0) );
|
ABSPATH=$( dirname $(realpath $0) );
|
||||||
|
|
||||||
|
# (1) Check synchronization done #
|
||||||
|
if [ ! -e /target/sync ]; then
|
||||||
|
slog "[!] not synced yet, aborting" - "daemon" && exit 127;
|
||||||
|
fi;
|
||||||
|
|
||||||
$ABSPATH/lib/mfrc522/loop;
|
$ABSPATH/lib/mfrc522/loop;
|
||||||
|
|
15
update
15
update
|
@ -5,23 +5,20 @@ __DIR__=$(dirname $(realpath $0));
|
||||||
source $__DIR__/lib/include/bash/const;
|
source $__DIR__/lib/include/bash/const;
|
||||||
source $__DIR__/lib/include/bash/func;
|
source $__DIR__/lib/include/bash/func;
|
||||||
|
|
||||||
# [1] Send data + fetch configuration
|
# (1) Check if synchronization done #
|
||||||
if [ ! -e /target/sync ]; then
|
if [ ! -e /target/sync ]; then
|
||||||
|
slog "not synchronized yet, aborting" - "update" && exit 127;
|
||||||
test "$($SOURCE_DIR/lib/api/sync)" = "127" && slog "sync failed" - "update" && exit 127;
|
|
||||||
|
|
||||||
touch /target/sync;
|
|
||||||
else
|
|
||||||
|
|
||||||
test "$($SOURCE_DIR/lib/api/update)" = "127" && slog "update failed" - "update" && exit 127;
|
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
|
# (2) Send data + fetch configuration
|
||||||
|
test "$($SOURCE_DIR/lib/api/update)" = "127" && slog "update failed" - "update" && exit 127;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [2] Update source
|
|
||||||
|
# (3) Update source
|
||||||
BRANCH=$(cat $BRANCH_CONF);
|
BRANCH=$(cat $BRANCH_CONF);
|
||||||
|
|
||||||
cd $SOURCE_DIR
|
cd $SOURCE_DIR
|
||||||
|
|
Loading…
Reference in New Issue