mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-06-27 11:37:35 +03:00

Remove the generated pam service config file `/etc/pam.d/pam_zfs_key_test` on test cleanup, since the tests shouldn't alter system state. While here, move the pam service config file name into a variable. Reviewed-by: Felix Dörre <felix@dogcraft.de> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Attila Fülöp <attila@fueloep.org> Closes #12765
50 lines
1.6 KiB
Bash
Executable File
50 lines
1.6 KiB
Bash
Executable File
#!/bin/ksh -p
|
|
#
|
|
# CDDL HEADER START
|
|
#
|
|
# The contents of this file are subject to the terms of the
|
|
# Common Development and Distribution License (the "License").
|
|
# You may not use this file except in compliance with the License.
|
|
#
|
|
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
# or http://www.opensolaris.org/os/licensing.
|
|
# See the License for the specific language governing permissions
|
|
# and limitations under the License.
|
|
#
|
|
# When distributing Covered Code, include this CDDL HEADER in each
|
|
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
# If applicable, add the following below this CDDL HEADER, with the
|
|
# fields enclosed by brackets "[]" replaced with your own identifying
|
|
# information: Portions Copyright [yyyy] [name of copyright owner]
|
|
#
|
|
# CDDL HEADER END
|
|
#
|
|
|
|
. $STF_SUITE/tests/functional/pam/utilities.kshlib
|
|
|
|
log_mustnot ismounted "$TESTPOOL/pam/${username}"
|
|
keystatus unavailable
|
|
|
|
genconfig "homes=$TESTPOOL/pam runstatedir=${runstatedir}"
|
|
echo "testpass" | pamtester ${pamservice} ${username} open_session
|
|
references 1
|
|
log_must ismounted "$TESTPOOL/pam/${username}"
|
|
keystatus available
|
|
|
|
echo "testpass" | pamtester ${pamservice} ${username} open_session
|
|
references 2
|
|
log_must ismounted "$TESTPOOL/pam/${username}"
|
|
keystatus available
|
|
|
|
log_must pamtester ${pamservice} ${username} close_session
|
|
references 1
|
|
log_must ismounted "$TESTPOOL/pam/${username}"
|
|
keystatus available
|
|
|
|
log_must pamtester ${pamservice} ${username} close_session
|
|
references 0
|
|
log_mustnot ismounted "$TESTPOOL/pam/${username}"
|
|
keystatus unavailable
|
|
|
|
log_pass "done."
|