Truncated history

This commit is contained in:
2024-12-28 12:04:44 +01:00
parent a0fd43e8c6
commit ea1fe23d8d
74 changed files with 3111 additions and 34 deletions

14
helpers/get-passwords.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
if ! [[ -d "./.passwords" ]]
then
mkdir "./.passwords"
echo "Created passwords directory"
fi
bw get password "ansible vault encryption" > ./.passwords/vault
echo "Fetched vault password"
bw get password "linux user ansible@bigboi" > ./.passwords/become
echo "Fetched ansible user password"
bw get password "linux user wholteza@bigboi" > ./.passwords/bootstrap_become
echo "Fetched bootstrap user password"