mirror of
https://github.com/netdata/netdata.git
synced 2025-04-06 22:38:55 +00:00
fix(netdata-updater.sh): ensure tmpdir-path argument is always passed (#19289)
This commit is contained in:
parent
cfd832964e
commit
3f1a1bd55e
1 changed files with 7 additions and 5 deletions
|
@ -586,11 +586,13 @@ self_update() {
|
|||
if _safe_download "https://raw.githubusercontent.com/netdata/netdata/master/packaging/installer/netdata-updater.sh" ./netdata-updater.sh; then
|
||||
chmod +x ./netdata-updater.sh || exit 1
|
||||
export ENVIRONMENT_FILE="${ENVIRONMENT_FILE}"
|
||||
force_update=""
|
||||
[ "$NETDATA_FORCE_UPDATE" = "1" ] && force_update="--force-update"
|
||||
interactive=""
|
||||
[ "$INTERACTIVE" = "0" ] && interactive="--non-interactive"
|
||||
exec ./netdata-updater.sh --not-running-from-cron --no-updater-self-update "$force_update" "$interactive" --tmpdir-path "$(pwd)"
|
||||
|
||||
cmd="./netdata-updater.sh --not-running-from-cron --no-updater-self-update"
|
||||
[ "$NETDATA_FORCE_UPDATE" = "1" ] && cmd="$cmd --force-update"
|
||||
[ "$INTERACTIVE" = "0" ] && cmd="$cmd --non-interactive"
|
||||
cmd="$cmd --tmpdir-path $(pwd)"
|
||||
|
||||
exec $cmd
|
||||
else
|
||||
error "Failed to download newest version of updater script, continuing with current version."
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue