diff options
author | 2008-02-19 02:54:04 +0100 | |
---|---|---|
committer | 2008-02-19 02:54:04 +0100 | |
commit | 8254a76792ccb7d0dd7e2cbc81a5de4dbf8d65e7 (patch) | |
tree | b214f2a31e00a1ebd96070f943fac42de48761ae | |
parent | Add install target. (diff) | |
download | pambase-8254a76792ccb7d0dd7e2cbc81a5de4dbf8d65e7.tar.gz pambase-8254a76792ccb7d0dd7e2cbc81a5de4dbf8d65e7.tar.bz2 pambase-8254a76792ccb7d0dd7e2cbc81a5de4dbf8d65e7.zip |
Add 'other' pam.d file too.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | other.in | 4 |
3 files changed, 6 insertions, 1 deletions
@@ -1,2 +1,3 @@ system-auth system-login +other @@ -3,7 +3,7 @@ CPP=cpp # The pam.d file to create -PAMD=system-auth system-login +PAMD=system-auth system-login other # Get this by default, even if I'd like avoid it... ifeq "$(IMPLEMENTATION)" "" diff --git a/other.in b/other.in new file mode 100644 index 0000000..d8cb1fe --- /dev/null +++ b/other.in @@ -0,0 +1,4 @@ +auth required pam_deny.so +account required pam_deny.so +password required pam_deny.so +session required pam_deny.so |