diff options
author | des <des@FreeBSD.org> | 2001-12-06 23:28:12 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-12-06 23:28:12 +0000 |
commit | 8e7db8a91bfeaec352082d7156f7e9aa98c93e9f (patch) | |
tree | a65c9d6e054e23adf3eb41bec96abbba984044b8 /etc | |
parent | c3af474bd9298771b826d189266c0e7bbbedd27a (diff) | |
download | FreeBSD-src-8e7db8a91bfeaec352082d7156f7e9aa98c93e9f.zip FreeBSD-src-8e7db8a91bfeaec352082d7156f7e9aa98c93e9f.tar.gz |
Install pam.d files with mode 0644, not 0755.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/pam.d/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/pam.d/Makefile b/etc/pam.d/Makefile index 0593c6c..827cfbb 100644 --- a/etc/pam.d/Makefile +++ b/etc/pam.d/Makefile @@ -20,5 +20,5 @@ PAMD += xserver install: (cd ${.CURDIR} && \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${PAMD} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${PAMD} \ ${DESTDIR}/etc/pam.d) |