pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

(www/bugzilla) Avoid permission denied with ls -l ${PREFIX}/share/bugzilla



Module Name:	pkgsrc-wip
Committed By:	Makoto Fujiwara (CF-S9) <makoto%ki.nu@localhost>
Pushed By:	mef
Date:		Sun Mar 12 13:38:20 2017 +0900
Changeset:	f1b6b30db0232cb765513d715a2f04e38c744576

Modified Files:
	bugzilla/INSTALL

Log Message:
(www/bugzilla) Avoid permission denied with ls -l ${PREFIX}/share/bugzilla

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=f1b6b30db0232cb765513d715a2f04e38c744576

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 bugzilla/INSTALL | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diffs:
diff --git a/bugzilla/INSTALL b/bugzilla/INSTALL
index 85544cec58..3842643090 100644
--- a/bugzilla/INSTALL
+++ b/bugzilla/INSTALL
@@ -10,6 +10,7 @@ case "${STAGE}" in
 POST-INSTALL)
 	cd ${BZDIR} &&
 		${CHOWN} -R ${WWWOWN} ${BZDIR} &&
-		${CHGRP} -R ${WWWGRP} ${BZDIR}
+		${CHGRP} -R ${WWWGRP} ${BZDIR} &&
+		${CHMOD}         0755 ${BZDIR}
 	;;
 esac


Home | Main Index | Thread Index | Old Index