* Test use-case where secrets had previously been exposed.

* BUG: blackbox_postdeploy should not "chgrp" files.
This commit is contained in:
tlimoncelli@stackexchange.com
2014-09-01 18:59:57 +00:00
parent 01a9292d9d
commit 4702a9a207
2 changed files with 13 additions and 3 deletions

View File

@@ -23,6 +23,5 @@ while read unencrypted_file; do
encrypted_file=$(get_encrypted_filename "$unencrypted_file")
decrypt_file_overwrite "$encrypted_file" "$unencrypted_file"
chmod g+r,o-rwx "$unencrypted_file"
$CHGRP puppet "$unencrypted_file"
done <"$BB_FILES"
echo '========== Decrypting new/changed files: DONE'