forked from drybjed/ansible-cryptsetup
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Persistent config on Qubes OS using
debops.persistent_paths
POC Related to: debops/debops-playbooks#333
- Loading branch information
Showing
6 changed files
with
74 additions
and
6 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
debops.cryptsetup - Setup and manage encrypted filesystems | ||
|
||
Copyright (C) 2015-2016 Robin Schneider <[email protected]> | ||
Copyright (C) 2015-2016 DebOps https://debops.org/ | ||
Copyright (C) 2015-2017 Robin Schneider <[email protected]> | ||
Copyright (C) 2015-2017 DebOps https://debops.org/ | ||
|
||
This Ansible role is part of DebOps. | ||
|
||
|
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
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,18 @@ | ||
--- | ||
|
||
- name: Setup and manage encrypted filesystems and ensure persistence | ||
hosts: [ 'debops_service_cryptsetup_persistent_paths' ] | ||
become: True | ||
|
||
environment: '{{ inventory__environment | d({}) | ||
| combine(inventory__group_environment | d({})) | ||
| combine(inventory__host_environment | d({})) }}' | ||
|
||
roles: | ||
|
||
- role: debops.cryptsetup | ||
tags: [ 'role::cryptsetup' ] | ||
|
||
- role: debops.persistent_paths | ||
tags: [ 'role::persistent_paths' ] | ||
persistent_paths__dependent_persistent_paths: '{{ cryptsetup__persistent_paths__dependent_persistent_paths }}' |
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