Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/Linux-PAM.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On 02/26/18 12:44, Donald Buczek wrote: > I request `--disable-cracklib` configuration, because I am about to > remove cracklib. > > The reason is, that cracklib provides some python bindings which would > be obsolete when we upgrade python. To redo cracklib without the > python bindings would be some work, because the package has changed a > lot (e.g. no more inline wordlists provided). I wanted to save the > effort, because we don't currently use it anyway.
executable file
44 lines (31 sloc)
1010 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env beesh | |
# BEE_VERSION Linux-PAM-1.3.0-0 | |
SRCURL[0]="http://linux-pam.org/library/Linux-PAM-${PKGVERSION}.tar.bz2" | |
# PATCHURL+=() | |
# EXCLUDE="" | |
#SBINDIR=/lib/security | |
#LIBDIR=/lib | |
INCLUDEDIR=/usr/include/security | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
mee_configure() { | |
bee_configure \ | |
--enable-read-both-confs \ | |
--disable-cracklib | |
} | |
#mee_build() { | |
# bee_build | |
#} | |
mee_install() { | |
bee_install | |
# until we fixed consolekit , systemd and gnome-keyring to put their stuff into | |
# /usr/lib/security instead of /lib/security | |
ln -s /lib/security/pam_systemd.so $D$LIBDIR/security/ | |
ln -s /lib/security/pam_ck_connector.so $D$LIBDIR/security/ | |
ln -s /lib/security/pam_gnome_keyring.so $D$LIBDIR/security/ | |
# just samples, to not overwrite config | |
for i in ${SYSCONFDIR}/environment ${SYSCONFDIR}/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf} ; do | |
mv -v ${D}${i}{,.sample} | |
done | |
} |