Added htpasswd replacement for systems without apache

master
lanxu 2018-01-11 20:55:39 +02:00
parent 5213599d56
commit 6b26036ab8
1 changed files with 14 additions and 0 deletions

14
htpasswd.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
if [ $# -eq 0 ]
then
echo "Please provide output file"
exit -1
fi
OUTPUT=$1
echo -n "Enter username and press [ENTER]: "
read USERNAME
echo -n "$USERNAME:" >> $OUTPUT
openssl passwd -apr1 >> $OUTPUT