diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:22:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:22:06 +0000 |
commit | 741c1ef7a4f2ac316ad6e557ddbe03023413478d (patch) | |
tree | 38890f681daa26c57e865b4feca10d0ca53e1046 /etc/pam.d/Makefile.am | |
parent | Initial commit. (diff) | |
download | shadow-741c1ef7a4f2ac316ad6e557ddbe03023413478d.tar.xz shadow-741c1ef7a4f2ac316ad6e557ddbe03023413478d.zip |
Adding upstream version 1:4.5.upstream/1%4.5upstream
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 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/etc/pam.d/Makefile.am b/etc/pam.d/Makefile.am new file mode 100644 index 0000000..d967eb9 --- /dev/null +++ b/etc/pam.d/Makefile.am @@ -0,0 +1,32 @@ +# 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 \ + su + +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 + +EXTRA_DIST = $(pamd_files) $(pamd_acct_tools_files) |