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