diff options
author | lth <lth@FreeBSD.org> | 2005-01-18 23:43:36 +0800 |
---|---|---|
committer | lth <lth@FreeBSD.org> | 2005-01-18 23:43:36 +0800 |
commit | fbe5655318149066ef37c64ef3db76db40925dcb (patch) | |
tree | 62ff50597d12d89e78da32b637fc8666babb15b1 /devel/p4p/files | |
parent | bec8d691d68125752e6bc9daf27900152390cd03 (diff) | |
download | freebsd-ports-gnome-fbe5655318149066ef37c64ef3db76db40925dcb.tar.gz freebsd-ports-gnome-fbe5655318149066ef37c64ef3db76db40925dcb.tar.zst freebsd-ports-gnome-fbe5655318149066ef37c64ef3db76db40925dcb.zip |
- Start p4web from rc.d script [1]
- Assume maintainership
Submitted by: Mark Santcroos <marks@ripe.net> [1]
Reviewed by: tobez
Diffstat (limited to 'devel/p4p/files')
-rw-r--r-- | devel/p4p/files/perforce.conf.in | 15 | ||||
-rw-r--r-- | devel/p4p/files/perforce.sh.in | 8 |
2 files changed, 23 insertions, 0 deletions
diff --git a/devel/p4p/files/perforce.conf.in b/devel/p4p/files/perforce.conf.in index 5db4fded51a2..803c56f86d17 100644 --- a/devel/p4p/files/perforce.conf.in +++ b/devel/p4p/files/perforce.conf.in @@ -58,3 +58,18 @@ PERFORCE_PROXY_OPTIONS="-d -p $PERFORCE_PORT -t $PERFORCE_PROXY_TARGET -r $PERFO # Uncomment this line to have the proxy server started automatically # #PERFORCE_PROXY_START=yes + +# +# p4web port +# +PERFORCE_WEB_PORT="6060" + +# +# p4web options (see p4web -h) +# +PERFORCE_WEB_OPTIONS="-B -w $PERFORCE_WEB_PORT -p $PERFORCE_PORT -v server=1" + +# +# Uncomment this line to have the web server started automatically +# +#PERFORCE_WEB_START=yes diff --git a/devel/p4p/files/perforce.sh.in b/devel/p4p/files/perforce.sh.in index e32da8484282..f0ed1db1c3b5 100644 --- a/devel/p4p/files/perforce.sh.in +++ b/devel/p4p/files/perforce.sh.in @@ -5,6 +5,7 @@ p4d=@PREFIX@/sbin/p4d p4ftpd=@PREFIX@/sbin/p4ftpd p4p=@PREFIX@/sbin/p4p +p4web=@PREFIX@/sbin/p4web case $1 in start) @@ -21,6 +22,10 @@ start) echo -n ' p4p' $p4p $PERFORCE_PROXY_OPTIONS fi + if [ -x $p4web -a x$PERFORCE_WEB_START = xyes ]; then + echo -n ' p4web' + su -fm $PERFORCE_USER -c "$p4web $PERFORCE_WEB_OPTIONS > /dev/null 2>&1 &" + fi ;; stop) @@ -34,6 +39,9 @@ stop) if [ -x $p4p ]; then killall -u 0 p4p > /dev/null 2>&1 && echo -n ' p4p' fi + if [ -x $p4web ]; then + killall -u $PERFORCE_USER p4web > /dev/null 2>&1 && echo -n ' p4web' + fi ;; restart) $0 stop |