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