blob: ae28506f8a5d415e542faad248e4d71f22328cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
#
# File: start-on-target.sh
# Author: Fulup Ar Foll @ IoT.bzh
# Object: Forward signal (SIGTERM) to remote process
# Created on 24-May-2017, 09:23:37
# Usage: remote-target-populate update script under ./build directory
# Do not change manually use 'make remote-target-populate'
export RSYNC_TARGET=@RSYNC_TARGET@
export PROJECT_NAME=@PROJECT_NAME@
export RSYNC_PREFIX=@RSYNC_PREFIX@/@PROJECT_NAME@
export AFB_REMPORT=@AFB_REMPORT@
export AFB_TOKEN=@AFB_TOKEN@
exec ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -tt $RSYNC_TARGET << EOF
CONTROL_CONFIG_PATH=$RSYNC_PREFIX/etc \
afb-daemon \
--workdir=$RSYNC_PREFIX \
--monitoring \
--port=$AFB_REMPORT \
--roothttp=./htdocs \
--ldpaths=./lib \
--verbose \
--token=$AFB_TOKEN \
--name $PROJECT_NAME &
PID_DAEMON=\$!
trap "echo REMOTE-SIGNAL TRAP; kill -15 \$PID_DAEMON" INT QUIT TERM EXIT
echo "Target Process Waiting for command"
# wait for daemon to finish
wait \$PID_DAEMON
exit
EOF
|