Fix start.sh misspelling of qbittorrent

This commit is contained in:
Derek "tachyon" Reese 2021-09-20 20:41:29 -07:00 committed by GitHub
parent 2dbbbc6006
commit b20e51f874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ if [ $? -eq 0 ]; then
echo "Group $PGID exists" echo "Group $PGID exists"
else else
echo "Adding $PGID group" echo "Adding $PGID group"
groupadd -g $PGID qbittorent groupadd -g $PGID qbittorrent
fi fi
## Check for missing userid ## Check for missing userid
@ -26,7 +26,7 @@ if [ $? -eq 0 ]; then
echo "User $PUID exists in /etc/passwd" echo "User $PUID exists in /etc/passwd"
else else
echo "Adding $PUID user" echo "Adding $PUID user"
useradd -c "qbittorent user" -g $PGID -u $PUID qbittorent useradd -c "qbittorrent user" -g $PGID -u $PUID qbittorrent
fi fi
# set umask # set umask