<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in services</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bad60285 - bsdinstall: Fix local_unbound option default on revisit</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#bad60285</link>
        <description>bsdinstall: Fix local_unbound option default on revisitThe variable used for the checklist&apos;s default value needs to correspondto the rc.conf variable as that&apos;s what&apos;s being parsed to determine them.In the case of local_unbound it&apos;s missing the _enable suffix and thusalways defaults to off on revisit.Fixes:	58eb9abb3157 (&quot;Add a line to the post-installation configuration dialog to enable the local_unbound service.&quot;)

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Tue, 29 Nov 2022 03:09:51 +0000</pubDate>
        <dc:creator>Jessica Clarke &lt;jrtc27@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>91985bc5 - bsdinstall: Fix issues parsing rc.conf.services on revisit</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#91985bc5</link>
        <description>bsdinstall: Fix issues parsing rc.conf.services on revisitThere are a few issues here, some of which are hiding others. The firstis that we don&apos;t use double quotes around the command substitution soevery word in the conf file is treated as a separate argument to eval,resulting in spaces being used in place of newlines and thus comments inthe file commenting out the rest of the file, not just to the end oftheir line. In particular, we insert one comment just before the dumpdeventry (the final one in the file) and so we never see dumpdev as set,and thus set a default value of on for the menu.The second issue is that, for dumpdev, it takes a value of AUTO not YESwhen set, but we don&apos;t replace this with on when eval&apos;ing, so then endup giving AUTO to bsddialog which is interpreted the same as off (whichseems to match GPL dialog). Thus handle AUTO like YES otherwise it willalways appear as unchecked on revisit.The final issue is that our case-insensitive YES/NO (and now AUTO)replacements have no word boundaries around them so match the middle ofwords too. As it happens this doesn&apos;t matter in practice at the moment,but it could in future; currently the only effect is that it rewritesmoused_nondefault_enable to moused_offndefault_enable, but since thisvariable is never read, only written based on moused(_enable) this isharmless, but we should fix it in case a service comes along in futurethat does get affected by it.

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Tue, 29 Nov 2022 02:56:25 +0000</pubDate>
        <dc:creator>Jessica Clarke &lt;jrtc27@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1843da3e - bsdinstall: Fix ntpd_sync_on_start service option</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#1843da3e</link>
        <description>bsdinstall: Fix ntpd_sync_on_start service optionThis installer option is currently totally useless, as it ends upcreating an ntpd_sync_on_start_enable=&quot;YES&quot; entry in rc.conf, not anntpd_sync_on_start=&quot;YES&quot; entry, as is the correct name. This can also benoticed by revisiting the services menu, which parses the previouslywritten rc.conf.services file to set variables governing the defaultmenu entry values so that selecting OK regenerates the same file, as themenu entry will use the correct variable name and thus think the entrywas not selected last time, defaulting back to off and losing thesetting.Thus, add a special case in the loop for this option. The only otherentry that doesn&apos;t follow the *_enable pattern is dumpdev (even mouseddoes, it just also sets a second variable), but that also deviates interms of being explicitly set either way and using AUTO rather than YES,hence why ntpd_sync_on_start follows a different pattern here and isspecial-cased rather than introducing a whole new variable that governsbehaviour outside the loop.Fixes:	c153a35bfd71 (&quot;bsdinstall: replace ntpdate by ntpd_sync_on_start&quot;)

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Tue, 29 Nov 2022 00:57:38 +0000</pubDate>
        <dc:creator>Jessica Clarke &lt;jrtc27@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c153a35b - bsdinstall: replace ntpdate by ntpd_sync_on_start</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#c153a35b</link>
        <description>bsdinstall: replace ntpdate by ntpd_sync_on_start  * change current NTP services offered by the FreeBSD Installer;  * no longer offer ntpdate to be enabled and started on boot;  * start offering the option to make ntpd set the date and time on boot itself.The motivation for this change comes from the ntpdate(8) manpage:  Note: The functionality of this program is now available in the ntpd(8)  program. See the -q command line option in the ntpd(8) page. After a  suitable period of mourning, the ntpdate utility is to be retired from  this distribution.Approved by:		cy (src), dteske (src)Differential Revision:	https://reviews.freebsd.org/D36206

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Tue, 27 Sep 2022 09:04:20 +0000</pubDate>
        <dc:creator>Vin&#237;cius Zavam &lt;egypcio@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cc42ef53 - bsdinstall: allow whitelabeling the scripts</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#cc42ef53</link>
        <description>bsdinstall: allow whitelabeling the scriptsApproved by:		allanjude, asicilianoDifferential Revision:	https://reviews.freebsd.org/D35197Sponsored by:		Rubicon Communications, LLC (&quot;Netgate&quot;)

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Tue, 24 May 2022 15:49:06 +0000</pubDate>
        <dc:creator>Brad Davis &lt;brd@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8cfbeb56 - bsdinstall services: Improve mouse configuration</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#8cfbeb56</link>
        <description>bsdinstall services: Improve mouse configurationbsdinstall(8) has an option to enable moused support.However, if it is not selected, moused is still startedthrough the configuration of nondefault devices.So, automatically add the moused_nondefault_enable=&quot;NO&quot;setting to rc.conf unless moused support is selected.PR:			227999Reported by:		bcranReviewed by:		baptDifferential Revision:	https://reviews.freebsd.org/D35193

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Sat, 21 May 2022 14:37:53 +0000</pubDate>
        <dc:creator>Alfonso S. Siciliano &lt;asiciliano@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>852d975c - bsdinstall services: Replace dialog with bsddialog</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#852d975c</link>
        <description>bsdinstall services: Replace dialog with bsddialogReplace (LGPL) dialog utility with (BSD-2-Clause) bsddialog utility.Approved by:		bapt (mentor)Differential Revision:	https://reviews.freebsd.org/D34640

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Fri, 25 Mar 2022 23:19:36 +0000</pubDate>
        <dc:creator>Alfonso S. Siciliano &lt;asiciliano@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>20d40a56 - bsdinstall: Add ntpdate option</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#20d40a56</link>
        <description>bsdinstall: Add ntpdate optionWhen you install a computer for the first time, the date in the CMOS sometimesnot accurate and you need to ntpdate as ntpd will fail a the time differenceis too big.Add an option in bsdinstall to enable ntpdate that will do that for us.Reviewed by:	allanjudeDifferential Revision:	https://reviews.freebsd.org/D13149

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Wed, 22 Nov 2017 15:27:47 +0000</pubDate>
        <dc:creator>Emmanuel Vadot &lt;manu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>58eb9abb - Add a line to the post-installation configuration dialog to enable the</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#58eb9abb</link>
        <description>Add a line to the post-installation configuration dialog to enable thelocal_unbound service.MFC after:	3 days

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Fri, 26 Sep 2014 11:38:10 +0000</pubDate>
        <dc:creator>Dag-Erling Sm&#248;rgrav &lt;des@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>13fba447 - Dummy commit (whitespace changes and style nits) to show previous commit</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#13fba447</link>
        <description>Dummy commit (whitespace changes and style nits) to show previous commit(SVN r260866) was [in-part] Submitted-by: Christoph Mallon ...&lt;christoph.mallon@gmx.de&gt;MFC After:	3 daysX-MFC-With:	r260866

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Mon, 20 Jan 2014 03:39:08 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e06674ff - Fix a bad comparison operator (s/==/=/), and address a use-case issue where-</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#e06674ff</link>
        <description>Fix a bad comparison operator (s/==/=/), and address a use-case issue where-in the one-line comment associated with the dumpdev setting was not presentfor the case where the user deselects the dumpdev service (restoring pre-r256348 behaviour.MFC After:	3 days

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Sat, 18 Jan 2014 22:33:49 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9ea4ca85 - I caught the following snippet at the end of my /var/log/bsdinstall_log:</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#9ea4ca85</link>
        <description>I caught the following snippet at the end of my /var/log/bsdinstall_log:===DEBUG: Running installation step: serviceslocal: Not in a function/usr/libexec/bsdinstall/services: cannot create  : Read-only file system/usr/libexec/bsdinstall/services: /tmp/bsdinstall/etc/rc.conf.services: \ Permission denied===The `local: Not in a function&apos; is obvious, and was introduced by myself inSVN revision 256348.The latter two are caused by the attempt to use &quot;\&quot; to continue the lineafter using the &quot;&gt;&gt;&quot; redirect. This appears to attempt to write a file withthe name &quot; &quot; in the current directory and subsequently attempts to executethe file that was originally intended for writing (which is not executable;hence the `Permission denied&apos;). That was introduced in SVN r228192 about2 years ago, apparently unnoticed until I started going over the debugoutputs very carefully.MFC after:	3 days

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Thu, 12 Dec 2013 20:47:18 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5e78a56e - sed(1): Use /i instead of /I</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#5e78a56e</link>
        <description>sed(1): Use /i instead of /I	the i modifier was added in r259132 since POSIX recently agreed to add	it. Switch uses of /I to /i.

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Mon, 09 Dec 2013 22:56:19 +0000</pubDate>
        <dc:creator>Eitan Adler &lt;eadler@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4da57f63 - Remove the dumpdev configuration dialog, merge it into the regular</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#4da57f63</link>
        <description>Remove the dumpdev configuration dialog, merge it into the regularservices configuration and enable it by default. Committed withslight change to menu text for length and content.Submitted by:	Allan Jude &lt;freebsd@allanjude.com&gt;Approved by:	re (glebius)

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Fri, 11 Oct 2013 21:23:44 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa333a18 - Note that cpufreq(4) is not available on all hardware.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#aa333a18</link>
        <description>Note that cpufreq(4) is not available on all hardware.PR:		bin/175139MFC after:	2 weeks

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Sat, 12 Jan 2013 16:01:58 +0000</pubDate>
        <dc:creator>Nathan Whitehorn &lt;nwhitehorn@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9cd86fa6 - Add a screen that asks if the user would like to enable crash dumps,</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#9cd86fa6</link>
        <description>Add a screen that asks if the user would like to enable crash dumps,giving them a very brief description of the trade-offs.  Whether theuser opts in or out add an entry to what will become /etc/rc.confexplaining what dumpdev is and how to turn on/off crash dumps.  The folkswho handle interacting with users submitting PRs have asked for this.Reviewed by:	nwhitehornMFC after:	1 day

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Fri, 02 Dec 2011 00:38:47 +0000</pubDate>
        <dc:creator>Ken Smith &lt;kensmith@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2118f387 - Import bsdinstall. This is meant to be (eventually in conjunction with</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/usr.sbin/bsdinstall/scripts/services#2118f387</link>
        <description>Import bsdinstall. This is meant to be (eventually in conjunction withpc-sysinstall) a replacement for sysinstall in the 9.0 release and beyond.Currently supported platforms are sparc64, pc98, i386, amd64, powerpc, andpowerpc64. Integration into the build system will occur in the comingweeks.Merging with pc-sysinstall will use this code as a frontend, whiletemporarily retaining the interactive partition editor here. This workwill be done in parallel with improvements on this code and releaseintegration.Thanks to all who have provided testing and comments!

            List of files:
            /freebsd-14.2/usr.sbin/bsdinstall/scripts/services</description>
        <pubDate>Fri, 18 Feb 2011 14:54:34 +0000</pubDate>
        <dc:creator>Nathan Whitehorn &lt;nwhitehorn@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
