From c850a1a9204f6aed8510fcab3b01cc1fbf98d17c Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 24 Apr 2021 02:30:31 -0400 Subject: [PATCH] Update setup.sh --- bin/setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/setup.sh b/bin/setup.sh index 38548f35..82ffbd51 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -9,6 +9,9 @@ if [ $(id -u) -eq 0 ]; then echo "" echo "[X] You cannot run this script as root. You must run it as a non-root user with sudo ability." echo " (create a new non-privileged user 'archivebox' if necessary, then re-run the script as that user)" + echo " adduser archivebox" + echo " usermod -a archivebox -G sudo # (on Ubuntu/Debian)" + exit 2 fi if (which docker-compose > /dev/null && docker pull archivebox/archivebox:latest); then