aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdocker/create_user4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/create_user b/docker/create_user
index d529cfe..a327e1d 100755
--- a/docker/create_user
+++ b/docker/create_user
@@ -9,8 +9,8 @@ fi
if [ -z "$2" ]; then
# password from prompt
- htpasswd -s $PASSWORD_FILE $1
+ htpasswd -B $PASSWORD_FILE $1
else
# read password from command line
- htpasswd -s -b $PASSWORD_FILE $1 $2
+ htpasswd -B -b $PASSWORD_FILE $1 $2
fi