Date: Tue, 6 Apr 2004 10:07:21 +0100 From: Matthew Seaman <m.seaman@infracaninophile.co.uk> To: RYAN vAN GINNEKEN <rmvg@shaw.ca> Cc: freebsd-questions@freebsd.org Subject: Re: startssl at boot time Message-ID: <20040406090720.GB17361@happy-idiot-talk.infracaninophile.co.uk> In-Reply-To: <4072488A.7050200@shaw.ca> References: <406F324B.1050005@shaw.ca> <20040404112328.GB7849@happy-idiot-talk.infracaninophile.co.uk> <4072488A.7050200@shaw.ca>
next in thread | previous in thread | raw e-mail | index | archive | help
--+g7M9IMkV8truYOl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 06, 2004 at 12:04:58AM -0600, RYAN vAN GINNEKEN wrote: > Patch guess i am new to patches in fact this is my first one usually=20 > just install the port as is and hope that all the patches are added. =20 > Have compiled a few packages from source but would rather not.=20 >=20 > Oh i think i get it it looks like mergemaster the + gets added and the -= =20 > gets removed right i will do manually will that work NOPE >=20 > please explain how i apply the patch works as i tried to manually edit=20 > the config file and apache did not start at all thank you in advance. =20 > Below is a copy of the edited apache2.sh file. >=20 > #!/bin/sh > PREFIX=3D/usr/local >=20 > case "$1" in > start) > SSL=3Dssl > [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl=20 > start${SSL} > /dev > ;; > stop) > [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop >=20 > /dev/null && echo > ;; > *) > echo "Usage: `basename $0` {start|stop}" >&2 > ;; > esac >=20 > exit 0 Yes -- that's right. However, for future reference, use the patch(1) program which can automate all that stuff for you. All you should need to do is save the message into a file, and then: # cd /usr/local/etc/rc.d # patch < /tmp/saved-message You don't even need to edit the saved message to extract the patch text: the patch(1) program deals with all that automatically. And you're right -- this is exactly what mergemaster(1) uses. The patch is produced by the diff(1) program, which is why they are occasionally known as 'diffs'. Note that diff(1) can produce patches in three different formats, but for historical reasons the default format is not the 'unidiff' format that basically everyone uses: you have to type 'diff -u' to get that. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --+g7M9IMkV8truYOl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAcnNIdtESqEQa7a0RAhgTAKCIpu74UpQYMxDvdFSUoQwCBfXEVgCgmDpe sS10FGLfGN8nb+6MRFSLQ3E= =EbzU -----END PGP SIGNATURE----- --+g7M9IMkV8truYOl--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040406090720.GB17361>