From fde2e640b0908b3881880ac69f16290b28de4be4 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Thu, 5 Mar 2026 15:32:31 +0100 Subject: [PATCH] refactor --- install/netbird-install.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/install/netbird-install.sh b/install/netbird-install.sh index c5dace330..b296adf29 100644 --- a/install/netbird-install.sh +++ b/install/netbird-install.sh @@ -13,21 +13,18 @@ setting_up_container network_check update_os -msg_info "Setting up NetBird Repository" +msg_info "Installing NetBird" setup_deb822_repo \ "netbird" \ "https://pkgs.netbird.io/debian/public.key" \ "https://pkgs.netbird.io/debian" \ "stable" -msg_ok "Set up NetBird Repository" - -msg_info "Installing NetBird" $STD apt install -y netbird msg_ok "Installed NetBird" -msg_info "Enabling NetBird Service" -$STD systemctl enable -q --now netbird -msg_ok "Enabled NetBird Service" +msg_info "Starting NetBird Service" +systemctl enable -q --now netbird +msg_ok "Started NetBird Service" echo "" echo ""