diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile index ca9d4e812b2b..7487909e397f 100644 --- a/tools/tools/tinderbox/www/Makefile +++ b/tools/tools/tinderbox/www/Makefile @@ -1,13 +1,15 @@ # $FreeBSD$ CGI = index.cgi -DATA = tb.css valid-css.gif valid-xhtml10.png +DATA = tb.css daemon.png valid-css.png valid-xhtml10.png WWWDIR ?= ${HOME}/public_html +WWWOWN ?= ${USER} +WWWGRP ?= ${USER} realinstall: - ${INSTALL} -m 0755 ${.CURDIR}/${CGI} ${WWWDIR} + ${INSTALL} -m0755 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${CGI} ${WWWDIR} .for FILE in ${DATA} - ${INSTALL} -m 0644 ${.CURDIR}/${FILE} ${WWWDIR} + ${INSTALL} -m0644 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${FILE} ${WWWDIR} .endfor .include diff --git a/tools/tools/tinderbox/www/daemon.png b/tools/tools/tinderbox/www/daemon.png new file mode 100644 index 000000000000..01f32b8565e1 Binary files /dev/null and b/tools/tools/tinderbox/www/daemon.png differ diff --git a/tools/tools/tinderbox/www/index.cgi b/tools/tools/tinderbox/www/index.cgi index 6f1e38c558ee..170f8316cce3 100644 --- a/tools/tools/tinderbox/www/index.cgi +++ b/tools/tools/tinderbox/www/index.cgi @@ -86,6 +86,7 @@ MAIN:{ +

FreeBSD tinderbox logs

diff --git a/tools/tools/tinderbox/www/valid-css.gif b/tools/tools/tinderbox/www/valid-css.gif deleted file mode 100644 index 020c75a73a8e..000000000000 Binary files a/tools/tools/tinderbox/www/valid-css.gif and /dev/null differ diff --git a/tools/tools/tinderbox/www/valid-css.png b/tools/tools/tinderbox/www/valid-css.png new file mode 100644 index 000000000000..23f216117690 Binary files /dev/null and b/tools/tools/tinderbox/www/valid-css.png differ