This commit is contained in:
Redsandyg
2026-06-15 06:31:35 +03:00
commit fcc9139361
50 changed files with 5400 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/sh
set -eu
OUT="${OUT:-/out/htpasswd}"
hash=$(openssl passwd -apr1 'password')
echo "user:$hash" > "$OUT"
echo "Created $OUT (user:password)"