From owner-freebsd-current@FreeBSD.ORG Fri Jul 18 14:51:46 2014 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8580E22C; Fri, 18 Jul 2014 14:51:46 +0000 (UTC) Received: from spindle.one-eyed-alien.net (spindle.one-eyed-alien.net [199.48.129.229]) by mx1.freebsd.org (Postfix) with ESMTP id 564B42C95; Fri, 18 Jul 2014 14:51:46 +0000 (UTC) Received: by spindle.one-eyed-alien.net (Postfix, from userid 3001) id D60F75A9F0B; Fri, 18 Jul 2014 14:51:38 +0000 (UTC) Date: Fri, 18 Jul 2014 14:51:38 +0000 From: Brooks Davis To: Baptiste Daroussin Subject: Re: HOWTO articles for migrating from Linux to FreeBSD, especially for pkg? Message-ID: <20140718145138.GB11456@spindle.one-eyed-alien.net> References: <53C82EC4.8060304@gmail.com> <20140717205445.GC28314@ivaldir.etoilebsd.net> <20140717210738.GE28314@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RASg3xLB4tUQ4RcS" Content-Disposition: inline In-Reply-To: <20140717210738.GE28314@ivaldir.etoilebsd.net> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: Craig Rodrigues , Adrian Chadd , Navdeep Parhar , freebsd-doc@freebsd.org, Alberto Mijares , freebsd-current Current , Andreas Nilsson , ports X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jul 2014 14:51:46 -0000 --RASg3xLB4tUQ4RcS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 17, 2014 at 11:07:39PM +0200, Baptiste Daroussin wrote: > On Thu, Jul 17, 2014 at 01:57:52PM -0700, Adrian Chadd wrote: > > On 17 July 2014 13:54, Baptiste Daroussin wrote: > > > On Thu, Jul 17, 2014 at 10:21:17PM +0200, Andreas Nilsson wrote: > > >> On Thu, Jul 17, 2014 at 10:15 PM, Navdeep Parhar = wrote: > > >> > > >> > On 07/17/14 13:12, Adrian Chadd wrote: > > >> > > On 17 July 2014 13:03, Alberto Mijares wro= te: > > >> > >> On Thu, Jul 17, 2014 at 2:58 PM, Adrian Chadd > > >> > wrote: > > >> > >>> Hi! > > >> > >>> > > >> > >>> 3) The binary packages need to work out of the box > > >> > >>> 4) .. which means, when you do things like pkg install apache,= it > > >> > >>> can't just be installed and not be enabled, because that's a b= it of a > > >> > >>> problem; > > >> > >> > > >> > >> > > >> > >> No. Please NEVER do that! The user must be able to edit the fil= es and > > >> > >> start the service by himself. > > >> > > > > >> > > Cool, so what's the single line command needed to type in to sta= rt a > > >> > > given package service? > > >> > > > >> > Aren't sysrc(8) and service(8) for this kind of stuff? > > >> > > > >> > > >> They sure are. > > >> > > >> Well, pkg install $service ; sysrc ${service}_enable=3D"YES" would d= o. > > >> Although some services have different names than the packge, which i= s sort > > >> of annoying. > > > > > > Maybe service needs to be extended (seriously sysrc ${service}_enable= =3D"YES" is > > > not user friendly) we have service -l that list the services, maybe a= service > > > ${service} on that create /etc/rc.conf.d/${service} with ${service}_e= nable=3D"YES" > > > in it and service ${service} off to remove it > > > > > > maybe service -l could also be extended to show the current status (m= aybe with a > > > -v switch) > > > > > > but for sure having the service off by default is a good idea :) > >=20 > > Yeah, maybe having it populate an entry of service_enable=3D"NO" for no= w . >=20 > then you need to extend rcng to support /usr/local/etc/rc.conf.d so the p= ackages > can install them without touching base :) and we will need to wait for all > supported FreeBSD version to have the said modification) Here's a totally untested patch to do that. I was rather surprised that this wasn't configurable already. -- Brooks Index: defaults/rc.conf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- defaults/rc.conf (revision 268825) +++ defaults/rc.conf (working copy) @@ -56,6 +56,7 @@ local_startup=3D"/usr/local/etc/rc.d" # startup script dirs. script_name_sep=3D" " # Change if your startup scripts' names contain spac= es rc_conf_files=3D"/etc/rc.conf /etc/rc.conf.local" +rc_conf_dirs=3D"/etc/rc.conf.d /usr/local/etc/rc.conf.d" =20 # ZFS support zfs_enable=3D"NO" # Set to YES to automatically mount ZFS file systems Index: rc.subr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- rc.subr (revision 268825) +++ rc.subr (working copy) @@ -1289,10 +1289,12 @@ fi _rc_conf_loaded=3Dtrue fi - if [ -f /etc/rc.conf.d/"$_name" ]; then - debug "Sourcing /etc/rc.conf.d/${_name}" - . /etc/rc.conf.d/"$_name" - fi + for _dir in ${rc_conf_dirs}; do + if [ -f "$_dir"/"$_name" ]; then + debug "Sourcing ${_dir}/${_name}" + . "$dir"/"$_name" + fi + done =20 # Set defaults if defined. for _var in $rcvar; do --RASg3xLB4tUQ4RcS Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlPJNHoACgkQXY6L6fI4GtQtAgCgzH7lveN/16Obli4FeZgtOW4N ga4AoKw1zKsRvDeS7rvpO6aSfYajH7vZ =6S6v -----END PGP SIGNATURE----- --RASg3xLB4tUQ4RcS--