This commit is contained in:
2026-02-03 22:20:03 -03:00
parent aea93418c5
commit db298babfc
14 changed files with 672 additions and 0 deletions

10
commands/secret.sh Executable file
View File

@@ -0,0 +1,10 @@
#! /bin/bash
if [[ -f "secret" ]]; then
echo "Found a SECRET! Shhhhh..." >&2
SECRET=$(<secret)
else
echo "Creating New SECRET! Shhhhh..." >&2
openssl rand -hex 32 >./secret
SECRET=$(<secret)
fi