From b20e51f874c903bde5ae9d430c5645c1c7b4e4c7 Mon Sep 17 00:00:00 2001 From: "Derek \"tachyon\" Reese" Date: Mon, 20 Sep 2021 20:41:29 -0700 Subject: [PATCH] Fix start.sh misspelling of qbittorrent --- qbittorrent/start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qbittorrent/start.sh b/qbittorrent/start.sh index a465d73..5bac819 100644 --- a/qbittorrent/start.sh +++ b/qbittorrent/start.sh @@ -17,7 +17,7 @@ if [ $? -eq 0 ]; then echo "Group $PGID exists" else echo "Adding $PGID group" - groupadd -g $PGID qbittorent + groupadd -g $PGID qbittorrent fi ## Check for missing userid @@ -26,7 +26,7 @@ if [ $? -eq 0 ]; then echo "User $PUID exists in /etc/passwd" else echo "Adding $PUID user" - useradd -c "qbittorent user" -g $PGID -u $PUID qbittorent + useradd -c "qbittorrent user" -g $PGID -u $PUID qbittorrent fi # set umask