diff options
author | pav <pav@FreeBSD.org> | 2006-01-03 21:49:52 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-03 21:49:52 +0800 |
commit | 2cbe692945a93caae808ccc06ff636737215d856 (patch) | |
tree | 5be932d4a54c14fa2e8aa56f0deb545214443c9e | |
parent | 84f12bd2f63041e073092ff2b553239b96f46f74 (diff) | |
download | freebsd-ports-gnome-2cbe692945a93caae808ccc06ff636737215d856.tar.gz freebsd-ports-gnome-2cbe692945a93caae808ccc06ff636737215d856.tar.zst freebsd-ports-gnome-2cbe692945a93caae808ccc06ff636737215d856.zip |
- Force configuration of zidestore
PR: ports/90669
Submitted by: Serge Gagnon <serge.gagnon@b2b2c.ca>
Approved by: maintainer timeout (14 days)
-rw-r--r-- | misc/linux-opengroupware/files/INSTALL.fbsd | 9 | ||||
-rw-r--r-- | misc/linux-opengroupware/files/zidestore.sh.sample | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/misc/linux-opengroupware/files/INSTALL.fbsd b/misc/linux-opengroupware/files/INSTALL.fbsd index 7f8d621e9785..90a9fb2aa1e2 100644 --- a/misc/linux-opengroupware/files/INSTALL.fbsd +++ b/misc/linux-opengroupware/files/INSTALL.fbsd @@ -144,8 +144,15 @@ INSTALLATION WALKTHROUGH: 6) Start OpenGroupware: + Copy /usr/local/etc.rc.d/ogo.sh.sample to ogo.sh and zidestore.sh.sample too. - `/usr/local/etc/rc.d/ogo.sh.sample start` + Now edit both these files and find: + "./WOApps/ZideStore.woa/ix86/linux-gnu/gnu-fd-nil/ZideStore -WOHttpAllowHost '(localhost, you.yourdomain.org)'>>${LOG} 2>&1 &" in it. + Next, you have to modifie you.yourdomain.org to reflect your configuration. + + After you have modified these files, just do a + `/usr/local/etc/rc.d/ogo.sh. start` + `/usr/local/etc/rc.d/zidetore.sh. start` 7) There are some other startscripts in /usr/local/etc/rc.d too: diff --git a/misc/linux-opengroupware/files/zidestore.sh.sample b/misc/linux-opengroupware/files/zidestore.sh.sample index b4b55c2a8b22..bf5bdfdc0302 100644 --- a/misc/linux-opengroupware/files/zidestore.sh.sample +++ b/misc/linux-opengroupware/files/zidestore.sh.sample @@ -25,7 +25,8 @@ start) [ -x ${ZIDE_BIN} ] && { su -l ${OGO_USER} -c \ - "./WOApps/ZideStore.woa/ix86/linux-gnu/gnu-fd-nil/ZideStore >>${LOG} 2>&1 &" +#the next line must be comment out and modified to reflect your configuration in order to start OpenGroupware +# "./WOApps/ZideStore.woa/ix86/linux-gnu/gnu-fd-nil/ZideStore -WOHttpAllowHost '(localhost, you.yourdomain.org)'>>${LOG} 2>&1 &" echo 'ZideStore started.' echo "**** RECEIVED 'start' from STARTSCRIPT at `date` ****" >>${LOG} } |