Browse Source

Fixed user creation to not copy skel-files

release/3.x.x
Damian Wolgast 3 years ago
parent
commit
3ee785c781
No known key found for this signature in database GPG Key ID: 97F36CC6D201E31B
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Build/deb-meta/DEBIAN/postinst

+ 1
- 1
Build/deb-meta/DEBIAN/postinst View File

@@ -9,7 +9,7 @@ INSTALLPATH=$BASEPATH/MQTTnetServer

# If user does not exist, create it
if (( $USEREXISTS == 1 )); then
useradd -d $INSTALLPATH -m -r $USER
useradd -d $INSTALLPATH -r $USER
EC=$(echo $?)

if (( $EC == 1 )); then


Loading…
Cancel
Save