pmlag

Poor man's link aggregation
git clone git://git.finwo.net/app/pmlag
Log | Files | Refs | README | LICENSE

commit 838ba4b7ff48e63838f8332acd598963952c916d
parent 00ed3ea1bdcff6632d20560fccc45889e382bb20
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Sun,  8 Oct 2023 19:33:50 +0200

Fix sudo requirement during alpine package install

Diffstat:
M.github/install-pkg.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/install-pkg.sh b/.github/install-pkg.sh @@ -10,11 +10,11 @@ if command -v apt-get &>/dev/null; then os="debian" elif command -v apk &>/dev/null; then # Alpine - install_cmd="apk add" + install_cmd="sudo apk add" os="alpine" elif command -v xbps-install &>/dev/null; then # Void - install_cmd="xbps-install -Sy" + install_cmd="sudo xbps-install -Sy" os="void" fi