X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2FLinux-PAM;h=237b0b3310e6e7524688f7423c49fb836ae8415f;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=26e49157091e6d0c7f5dad19dc13a63e5ae4a949;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/Linux-PAM b/stage3/pkg/Linux-PAM index 26e4915..237b0b3 100644 --- a/stage3/pkg/Linux-PAM +++ b/stage3/pkg/Linux-PAM @@ -4,13 +4,12 @@ hvconfig_pre() { # --libdir=/lib # Necessary to prevent PAM from instaling into /lib64 - CONFIGURE_OPTS="\ - ${CONFIGURE_OPTS} \ + CONFIGURE_OPTS+=" \ --libdir=/lib \ --sbindir=/lib/security \ - --enable-securedir=/lib/security \ + --docdir=/usr/share/doc/${PACKAGE} \ --enable-shared \ - --docdir=/usr/share/doc/${1}" + --enable-read-both-confs" } hvbuild_post() @@ -29,13 +28,12 @@ hvbuild_post() done fi - mkdir -p /etc/pam.d + install -v -m755 -d /etc/pam.d cat > /etc/pam.d/other << EOF # /etc/pam.d/other - -auth required pam_unix.so nullok +auth required pam_unix.so nullok account required pam_unix.so session required pam_unix.so -password required pam_unix.so nullok +password required pam_unix.so nullok EOF }