-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from pcahyna/luks-safe-mode-fqrn
Disallow toggling encryption in safe mode
- Loading branch information
Showing
5 changed files
with
389 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Create a file to be checked that it still exists and no data loss has occured. | ||
# To use: | ||
# - set testfile to a path under the mountpoint being tested | ||
# - include this file (create-test-file.yml) before executing the | ||
# operation to be tested | ||
# - execute the operation that could potentially result in a loss of | ||
# data in the filesystem where testfile is located | ||
# - include verify-data-preservation.yml | ||
|
||
- name: create a file | ||
file: | ||
path: "{{ testfile }}" | ||
state: touch |
Oops, something went wrong.