An installer that moved a channel nobody asked it to
The channel lives in two places -- lembas.env, which the page reads, and the systemd unit, which the button obeys -- and a re-run keeps the env file while rewriting the unit. Defaulting to stable therefore meant a re-run for some unrelated reason silently moved one half and not the other, leaving a host whose page named edge and whose button deployed stable. That mismatch already had an alert. An installer that causes the thing it detects is the wrong end to be detecting it from, so it defaults to what the host already follows. Parsed rather than sourced: that file holds the secret key. Found by running it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
+17
-1
@@ -30,7 +30,23 @@ BRANCH="${LEMBAS_BRANCH:-main}"
|
||||
# (the branch tip). Stable by default, because a branch tip is not a release --
|
||||
# following one means deploying whatever was pushed five minutes ago, which is
|
||||
# right for whoever builds this and wrong for whoever runs it.
|
||||
CHANNEL="${LEMBAS_CHANNEL:-stable}"
|
||||
# On a **re-run**, default to what this host already follows rather than to
|
||||
# `stable`. The channel lives in two places -- `lembas.env`, which the page
|
||||
# reads, and the systemd unit, which the button obeys -- and a re-run keeps the
|
||||
# env file ("keeping it, and its secret key") while rewriting the unit. So a
|
||||
# re-run to fix something unrelated silently moved one half and not the other,
|
||||
# and left the host with a page naming one channel and a button deploying
|
||||
# another. That mismatch has an alert of its own; an installer that *causes* it
|
||||
# is the wrong end to be detecting it from.
|
||||
#
|
||||
# Parsed, not sourced -- `lembas.env` holds the secret key, and there is no
|
||||
# reason for this to have it in a variable.
|
||||
_installed_channel=""
|
||||
if [[ -f "$PREFIX/lembas.env" ]]; then
|
||||
_installed_channel=$(sed -n 's/^LEMBAS_UPDATE_CHANNEL=\([a-z]\{1,16\}\)$/\1/p' \
|
||||
"$PREFIX/lembas.env" | tail -1)
|
||||
fi
|
||||
CHANNEL="${LEMBAS_CHANNEL:-${_installed_channel:-stable}}"
|
||||
# Whether to install the units that let the web interface update this host.
|
||||
# Off, and off on a re-run that does not ask for it: it grants anybody who can
|
||||
# administer the web UI the ability to deploy the branch, as root. See the
|
||||
|
||||
Reference in New Issue
Block a user