Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 May 2000 19:06:39 +0200
From:      Palle Girgensohn <girgen@partitur.se>
To:        Arcady Genkin <a.genkin@utoronto.ca>
Cc:        Andreas Klemm <andreas@klemm.gtn.com>, Donald Chan <donald@batti.com>, Satoshi Asami <asami@cs.berkeley.edu>, Konstantin Bekreev <cvb@ulsu.ru>, "David W. Chapman Jr." <dchapman@houabg.com>, Roberto Ferrer de Amorim <ramorim@leiloesnet.com.br>, The Hermit Hacker <scrappy@hub.org>, "Vladimir A. Jakovenko" <vovik@lucky.net>, Robert B <robertb@probe.net>, Andrij Korud <akorud@polynet.lviv.ua>, jkoshy@FreeBSD.org, andrew@ugh.net.au, "Woodcock, Steve" <SWoodcock@scholastic.co.uk>, "Jason J. Horton" <jason@intercom.com>, ports@FreeBSD.org
Subject:   Re: Postgresql has been updated to version 7 release...
Message-ID:  <392C0C1F.2A3CE6D5@partitur.se>
References:  <39197858.7F5F3E6F@leiloesnet.com.br> <Pine.BSF.4.21.0005110000480.777-100000@thelab.hub.org> <39197858.7F5F3E6F@leiloesnet.com.br> <006f01bfb4b9$beae32e0$931576d8@inethouston.net> <20000422151956.B36664@titan.klemm.gtn.com> <200004240759.LAA00359@ulsu.ru> <200004220945.NAA18690@ulsu.ru> <20000416220544.A65191@titan.klemm.gtn.com> <vqcitxgbh64.fsf@silvia.hip.berkeley.edu> <199911020517.AAA22653@synergy.batti.com> <20000524163934.B53603@titan.klemm.gtn.com> <871z2rev95.fsf@tea.thpoon.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Arcady Genkin wrote:
> 
> Andreas Klemm <andreas@klemm.gtn.com> writes:
> 
> > Basically ... the postgresql7 port has been updated to v7 release.
> > Thanks to Palle Girgensohn ... This is the good news for all of you
> > who asked for a port update.
> >
> > Then possibly several things remain ...
> > Please check, if there is still demand for any changes.
> 
> Andreas, thanks a lot for making this update!
> 
> On a side note, I notice that the startup script in
> /usr/local/etc/rc.d now expects an argument (start or stop). How is
> this going to work when the system is rebooted -- AFAIK the startup
> script only checks for executable files in /usr/local/etc/rc.d and
> executes them without arguments.


Nope. They are executed with the 'start' argument.

In /etc/rc:

# For each valid dir in $local_startup, search for init scripts
matching *.sh
#
case ${local_startup} in
[Nn][Oo] | '')
        ;;
*)
        echo -n 'Local package initialization:'
        for dir in ${local_startup}; do
                if [ -d "${dir}" ]; then
                        for script in ${dir}/*.sh; do
                                if [ -x "${script}" ]; then
                                        (set -T
                                         trap 'exit 1' 2
                                         ${script} start)
                                fi
                        done
                fi
        done
        echo .
        ;;
esac


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?392C0C1F.2A3CE6D5>