diff options
author | Bob Beck <beck@cvs.openbsd.org> | 1998-03-25 07:41:54 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 1998-03-25 07:41:54 +0000 |
commit | aa1d308901ca3092e03d2d9afcdaac57e8f38a07 (patch) | |
tree | 1c8f8ddc71bf7368838748ddca2a4962d0c09b63 /usr.sbin/httpd | |
parent | f46bfe93fe70beae8f5c44a1b619f0e4e4c96fbe (diff) |
Install cgi's 000 by default - user must chmod to enable.
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/httpd/Makefile b/usr.sbin/httpd/Makefile index b2895c9fe25..edeff36f771 100644 --- a/usr.sbin/httpd/Makefile +++ b/usr.sbin/httpd/Makefile @@ -100,7 +100,7 @@ distribution: @-for i in ${CGIFILES}; do \ j=`dirname $$i`; \ echo "Installing ${DESTDIR}${WWWROOT}/$$i"; \ - ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 555 \ + ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 000 \ ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ done @-for i in ${ICONFILES}; do \ |