From cd9e0f7b5bcce21809f8db118f7e018c128bbded Mon Sep 17 00:00:00 2001 From: henrygd Date: Thu, 10 Jul 2025 15:10:44 -0400 Subject: [PATCH] fix typo in install scripts --- supplemental/scripts/install-agent-beta.sh | 12 ++++++------ supplemental/scripts/install-agent.sh | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/supplemental/scripts/install-agent-beta.sh b/supplemental/scripts/install-agent-beta.sh index 349eaf7..26c439d 100755 --- a/supplemental/scripts/install-agent-beta.sh +++ b/supplemental/scripts/install-agent-beta.sh @@ -144,7 +144,7 @@ while [ $# -gt 0 ]; do shift HUB_URL="$1" ;; - -v|--version) + -v | --version) shift VERSION="$1" ;; @@ -353,8 +353,8 @@ if is_alpine; then fi # Add the user to the docker group to allow access to the Docker socket if group docker exists if getent group docker; then - echo "Adding besel to docker group" - usermod -aG docker beszel + echo "Adding beszel to docker group" + usermod -aG docker beszel fi else @@ -362,10 +362,10 @@ else echo "Creating a dedicated user for the Beszel Agent service..." useradd --system --home-dir /nonexistent --shell /bin/false beszel fi -# Add the user to the docker group to allow access to the Docker socket if group docker exists + # Add the user to the docker group to allow access to the Docker socket if group docker exists if getent group docker; then - echo "Adding besel to docker group" - usermod -aG docker beszel + echo "Adding beszel to docker group" + usermod -aG docker beszel fi fi diff --git a/supplemental/scripts/install-agent.sh b/supplemental/scripts/install-agent.sh index c45441c..0439da0 100755 --- a/supplemental/scripts/install-agent.sh +++ b/supplemental/scripts/install-agent.sh @@ -323,8 +323,8 @@ if is_alpine; then fi # Add the user to the docker group to allow access to the Docker socket if group docker exists if getent group docker; then - echo "Adding besel to docker group" - usermod -aG docker beszel + echo "Adding beszel to docker group" + usermod -aG docker beszel fi else @@ -332,10 +332,10 @@ else echo "Creating a dedicated user for the Beszel Agent service..." useradd --system --home-dir /nonexistent --shell /bin/false beszel fi -# Add the user to the docker group to allow access to the Docker socket if group docker exists + # Add the user to the docker group to allow access to the Docker socket if group docker exists if getent group docker; then - echo "Adding besel to docker group" - usermod -aG docker beszel + echo "Adding beszel to docker group" + usermod -aG docker beszel fi fi