mirror of
https://github.com/systemd/systemd.git
synced 2025-02-01 09:47:35 +03:00
build-sys: Allow disabling installation of pam config snippet
This commit is contained in:
parent
95cbf84564
commit
651742d8ec
@ -48,6 +48,9 @@ PAM:
|
||||
/etc/security/limits.conf will not be read unless you load pam_limits.
|
||||
Make sure you add modules your distro expects from user services.
|
||||
|
||||
Pass --with-pamconfdir=no to ./configure to avoid installing this file
|
||||
and instead install your own.
|
||||
|
||||
CONTRIBUTING UPSTREAM:
|
||||
|
||||
We generally do no longer accept distribution-specific
|
||||
|
@ -5902,8 +5902,10 @@ pam_systemd_la_LIBADD = \
|
||||
pamlib_LTLIBRARIES = \
|
||||
pam_systemd.la
|
||||
|
||||
if ENABLE_PAM_CONFIG
|
||||
dist_pamconf_DATA = \
|
||||
src/login/systemd-user
|
||||
endif
|
||||
|
||||
EXTRA_DIST += \
|
||||
src/login/systemd-user.m4
|
||||
|
@ -1507,9 +1507,10 @@ AC_ARG_WITH([pamlibdir],
|
||||
AX_NORMALIZE_PATH([with_pamlibdir])
|
||||
|
||||
AC_ARG_WITH([pamconfdir],
|
||||
AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
|
||||
AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration (pass no to disable installing)]),
|
||||
[],
|
||||
[with_pamconfdir=${sysconfdir}/pam.d])
|
||||
AM_CONDITIONAL(ENABLE_PAM_CONFIG, [test "$with_pamconfdir" != "no"])
|
||||
AX_NORMALIZE_PATH([with_pamconfdir])
|
||||
|
||||
AC_ARG_ENABLE([split-usr],
|
||||
|
Loading…
x
Reference in New Issue
Block a user