mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 15:43:21 +00:00
10 lines
165 B
Bash
Executable file
10 lines
165 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "create_user [username]"
|
|
echo "or"
|
|
echo "create_user [username] [password]"
|
|
exit 1
|
|
fi
|
|
|
|
htpasswd -B $PASSWORD_FILE $1 $2
|