2020-05-04 00:16:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
dir=$(dirname "$0")
|
|
|
|
instance="$1"
|
2020-05-04 03:10:54 +00:00
|
|
|
config_dir=/etc/advisorycircular
|
2020-05-09 21:27:42 +00:00
|
|
|
run_dir=/var/lib/advisorycircular
|
2020-06-22 16:23:07 +00:00
|
|
|
ac_db_path=/usr/local/share/advisorycircular/aircraft-info/aircraft-info.sqb
|
2020-06-07 05:51:52 +00:00
|
|
|
interval=15
|
2020-05-04 00:16:17 +00:00
|
|
|
|
2020-05-04 03:10:54 +00:00
|
|
|
config_path="$config_dir"/"$instance"-config.yaml
|
|
|
|
secrets_path="$config_dir"/"$instance"-secrets.yaml
|
2020-05-26 00:52:39 +00:00
|
|
|
history_path="$run_dir"/"$instance"-history.json
|
2020-06-22 16:23:07 +00:00
|
|
|
(cd "$run_dir" && "$dir"/intervalexec $interval node $dir/out/advisorycircular.js --config "$config_path" --secrets "$secrets_path" --aircraft-info-db "$ac_db_path" --history "$history_path" --log-prefix "$instance")
|