fix 1.23.2: max-ladder RUN_TIMEOUT 3h (not 600s from env)
Force MAX_LADDER_RUN_TIMEOUT/10800 in run-max-ladder-monitoring.sh so shared ~/.config/taler-monitoring/env cannot shrink the daily hunt. Install uses systemctl --no-block for long oneshots.
This commit is contained in:
parent
c1a3cba28b
commit
bf04f90538
4 changed files with 9 additions and 7 deletions
|
|
@ -88,11 +88,12 @@ install_local() {
|
|||
systemctl --user daemon-reload 2>/dev/null || true
|
||||
# initial stamp so path exists
|
||||
"$ROOT/touch-software-stamp.sh"
|
||||
systemctl --user start taler-monitoring-hacktivism.service || true
|
||||
systemctl --user start taler-monitoring-surface.service || true
|
||||
systemctl --user start taler-monitoring-aptdeploy.service || true
|
||||
# oneshot jobs: --no-block so install does not wait hours
|
||||
systemctl --user start --no-block taler-monitoring-hacktivism.service || true
|
||||
systemctl --user start --no-block taler-monitoring-surface.service || true
|
||||
systemctl --user start --no-block taler-monitoring-aptdeploy.service || true
|
||||
# first max-ladder round immediately (daily thereafter)
|
||||
systemctl --user start taler-monitoring-max-ladder.service || true
|
||||
systemctl --user start --no-block taler-monitoring-max-ladder.service || true
|
||||
|
||||
echo "--- status ---"
|
||||
systemctl --user status taler-monitoring-hacktivism.path --no-pager -l | head -15
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@ export INSIDE_MODE="${INSIDE_MODE:-local-podman}"
|
|||
export LOCAL_STACK="${LOCAL_STACK:-1}"
|
||||
export SKIP_SSH="${SKIP_SSH:-0}"
|
||||
export CONTINUE_ON_ERROR="${CONTINUE_ON_ERROR:-1}"
|
||||
# max-search probes + pay hunt
|
||||
export RUN_TIMEOUT="${RUN_TIMEOUT:-10800}"
|
||||
# max-search probes + pay hunt — force high wall clock (koopa env often has RUN_TIMEOUT=600)
|
||||
export RUN_TIMEOUT="${MAX_LADDER_RUN_TIMEOUT:-10800}"
|
||||
|
||||
export PHASES="max-ladder monpages"
|
||||
export MON_HOSTS="${MON_HOSTS:-bank.hacktivism.ch exchange.hacktivism.ch taler.hacktivism.ch}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue