summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2020-01-14 11:35:31 +0100
committerJonathan Bauer2020-01-14 11:35:31 +0100
commit1e754828d1b97205b74eed93a31693684d8fe82a (patch)
treef300671c44db8572ce5e15200679038cdbbac1bb
parent[debug-report-bwlp] include stage4 setup logs (diff)
downloadmltk-1e754828d1b97205b74eed93a31693684d8fe82a.tar.gz
mltk-1e754828d1b97205b74eed93a31693684d8fe82a.tar.xz
mltk-1e754828d1b97205b74eed93a31693684d8fe82a.zip
[pam-slx-plug] fix exec_auth_final always exiting
Password was not passed to it, thus it would never reach the hooks...
-rwxr-xr-xcore/modules/pam-slx-plug/data/opt/openslx/pam/systemd/create-pam-config2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/pam-slx-plug/data/opt/openslx/pam/systemd/create-pam-config b/core/modules/pam-slx-plug/data/opt/openslx/pam/systemd/create-pam-config
index 18936603..6fcf9655 100755
--- a/core/modules/pam-slx-plug/data/opt/openslx/pam/systemd/create-pam-config
+++ b/core/modules/pam-slx-plug/data/opt/openslx/pam/systemd/create-pam-config
@@ -135,7 +135,7 @@ if grep -q '<slx-autogen>' "/etc/pam.d/common-auth"; then
cat >> "$tmpfile" <<-HERE
auth optional pam_faildelay.so delay=2123123
auth requisite pam_deny.so
- auth optional pam_exec.so quiet /opt/openslx/pam/exec_auth_final
+ auth optional pam_exec.so quiet expose_authtok /opt/openslx/pam/exec_auth_final
auth required pam_permit.so
auth optional pam_cap.so
HERE