diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:46:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:46:53 +0000 |
commit | 19da58be2d9359a9641381feb559be0b918ef710 (patch) | |
tree | 109724175f07436696f51b14b5abbd3f4d704d6d /etc/pam.d/Makefile.am | |
parent | Initial commit. (diff) | |
download | shadow-19da58be2d9359a9641381feb559be0b918ef710.tar.xz shadow-19da58be2d9359a9641381feb559be0b918ef710.zip |
Adding upstream version 1:4.13+dfsg1.upstream/1%4.13+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'etc/pam.d/Makefile.am')
-rw-r--r-- | etc/pam.d/Makefile.am | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/etc/pam.d/Makefile.am b/etc/pam.d/Makefile.am new file mode 100644 index 0000000..38ff26a --- /dev/null +++ b/etc/pam.d/Makefile.am @@ -0,0 +1,35 @@ +# This is a dummy Makefile.am to get automake work flawlessly, +# and also cooperate to make a distribution for `make dist' + +pamd_files = \ + chfn \ + chsh \ + groupmems \ + login \ + passwd + +pamd_acct_tools_files = \ + chage \ + chgpasswd \ + chpasswd \ + groupadd \ + groupdel \ + groupmod \ + newusers \ + useradd \ + userdel \ + usermod + +if USE_PAM +pamddir = $(sysconfdir)/pam.d +pamd_DATA = $(pamd_files) +if ACCT_TOOLS_SETUID +pamd_DATA += $(pamd_acct_tools_files) +endif +endif + +if WITH_SU +pamd_files += su +endif + +EXTRA_DIST = $(pamd_files) $(pamd_acct_tools_files) |