diff options
author | felixdoerre <[email protected]> | 2020-06-25 03:45:44 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-24 18:45:44 -0700 |
commit | 221e67040fc47c15b3da2afb09bb48f1e9700fb9 (patch) | |
tree | 4d06425fb5abb067990e8b936b2a909f39e08da5 /tests/test-runner | |
parent | 75138073208674967d0fb238f1b6210da224db36 (diff) |
pam: implement a zfs_key pam module
Implements a pam module for automatically loading zfs encryption keys
for home datasets. The pam module:
- loads a zfs key and mounts the dataset when a session opens.
- unmounts the dataset and unloads the key when the session closes.
- when the user is logged on and changes the password, the module
changes the encryption key.
Reviewed-by: Richard Laager <[email protected]>
Reviewed-by: @jengelh <[email protected]>
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Felix Dörre <[email protected]>
Closes #9886
Closes #9903
Diffstat (limited to 'tests/test-runner')
-rwxr-xr-x | tests/test-runner/bin/zts-report.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-runner/bin/zts-report.py b/tests/test-runner/bin/zts-report.py index 767d64d1c..0162248ed 100755 --- a/tests/test-runner/bin/zts-report.py +++ b/tests/test-runner/bin/zts-report.py @@ -239,6 +239,7 @@ maybe = { 'userquota/setup': ['SKIP', exec_reason], 'vdev_zaps/vdev_zaps_004_pos': ['FAIL', '6935'], 'zvol/zvol_ENOSPC/zvol_ENOSPC_001_pos': ['FAIL', '5848'], + 'pam/setup': ['SKIP', "pamtester might be not available"], } if sys.platform.startswith('freebsd'): |