Compare commits

...

2 Commits

Author SHA256 Message Date
0bde766c8c Merge remote-tracking branch 'origin/master'
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 2m1s
2025-10-26 15:54:42 +00:00
01275e130e V8.00.000.2025.06.17
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
2025-10-26 15:54:33 +00:00
2 changed files with 4 additions and 4 deletions

View File

@@ -34,12 +34,12 @@ secrets:
################################################################################################################################
luks:
backup:
note: "The value is '<share-identifier>:<password>' (colon-separated). Use the same dedicated destination and credentials across servers."
note: "The value is [<share-identifier>:<password>] (colon-separated). Use the same dedicated destination and credentials across servers."
scope: "offsite-backup"
type: "plain"
value: "NextcloudFolderNameOrShareID:SuperSecurePassword123!"
boot:
note: "Dedicated passphrase for the '/boot' partition; chosen for easy manual input via the VPS web console."
note: "Dedicated passphrase for the [/boot] partition; chosen for easy manual input via the VPS web console."
scope: "luks"
type: "plain"
value: "Ceterum_censeo_Bruxellam_et_Berolinum_delenda_esse!"
@@ -59,7 +59,7 @@ secrets:
seeds:
mfa:
info:
note: "MFA version identifier (e.g., 'totp:v1') for seamless mfa secrets rollover."
note: "MFA version identifier, e.g., [totp:v1] for seamless mfa secrets rollover."
scope: "mfa"
type: "plain"
value: "totp:v1"

View File

@@ -190,7 +190,7 @@ yaml_secret() {
yq -o=shell "${secrets_if}" >| "${__SECRETS}" && ciss_secrets_wiper "${secrets_if}"
sed -n -E '
sed -i -E '
/^[[:space:]]*(#|$)/b # Skip empty/comment lines.
s/^[[:space:]]*export[[:space:]]+// # Drop optional leading "export ".
/^[[:space:]]*[A-Za-z_][A-Za-z0-9_]*_value=/!b # Keep only *_value= assignments.