Skip to content

Commit

Permalink
deploy x
Browse files Browse the repository at this point in the history
  • Loading branch information
rootTHC committed Mar 17, 2024
1 parent a60fe4b commit 915f650
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions beta/x
Original file line number Diff line number Diff line change
Expand Up @@ -1381,9 +1381,6 @@ install_system_systemd()
[[ -n "$IS_INSTALLED" ]] && {
xrm "${DSTBIN}"
unset DSTBIN
# FIXME: better to call bin2config and load whatever we wrote but this
# is quicker:
[[ "${GS_BEACON:-1}" -le 10 ]] && GS_BEACON=30
return 0
}

Expand Down Expand Up @@ -1735,7 +1732,10 @@ show_install_config() {
}

str="always connected ${CN}${CF}[GS_BEACON=30 to change]"
[[ -n $GS_BEACON ]] && str="every $GS_BEACON minutes"
[[ -n $GS_BEACON ]] && {
[[ $GS_BEACON -lt 10 ]] && GS_BEACON=30
str="every $GS_BEACON minutes"
}
echo -e "Beacon : ${CDG}${str}${CN}"
}

Expand Down

0 comments on commit 915f650

Please sign in to comment.