<?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 hostname</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</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>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</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>3b8f08459569bf0faa21473e5cec2491e95c9349 - Merge head</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#3b8f08459569bf0faa21473e5cec2491e95c9349</link>
        <description>Merge head

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Mon, 28 Apr 2014 07:50:45 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>84e51a1b679bececc13cbe3cd3cb9b7d461b9fe7 - IFC @264767</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#84e51a1b679bececc13cbe3cd3cb9b7d461b9fe7</link>
        <description>IFC @264767

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Wed, 23 Apr 2014 21:52:43 +0000</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5748b897da441d1f10e1fe0c39155ea33d6d383a - Merge head up to r262222 (last merge was incomplete).</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#5748b897da441d1f10e1fe0c39155ea33d6d383a</link>
        <description>Merge head up to r262222 (last merge was incomplete).

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Wed, 19 Feb 2014 22:02:15 +0000</pubDate>
        <dc:creator>Martin Matuska &lt;mm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>485ac45a536e186a26411277af1fe98ef0d17c2b - MFC @ r259205 in preparation for some SVM updates. (for real this time)</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#485ac45a536e186a26411277af1fe98ef0d17c2b</link>
        <description>MFC @ r259205 in preparation for some SVM updates. (for real this time)

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Tue, 04 Feb 2014 06:59:08 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d4ae33f0721c1b170fe37d97e395228ffcfb3f80 - Performance and debugging enhancements:</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#d4ae33f0721c1b170fe37d97e395228ffcfb3f80</link>
        <description>Performance and debugging enhancements:+ Remove UNAME_P=$(...) from startup/misc -- already supplied by common.subr+ Use f_getvar instead of $(eval echo \$$var) -- f_getvar is sub-shell free+ Add `-e&apos; and `-k var&apos; options to f_eval_catch -- increasing use-cases+ Use f_eval_catch to display errors on failure -- reducing duplicated code+ Use f_eval_catch when we need output from a command -- improving debugging+ Optimize f_isinter of strings.subr for performance -- now sub-shell free+ Improve error checking on pidfiles -- using f_eval_catch and f_isinteger+ Use $var_to_set arg of f_ifconfig_{inet,netmask} -- eliminate sub-shells+ Use f_sprintf instead of $(printf ...) -- consolidate sub-shells+ Use $var_to_set arg of f_route_get_default -- eliminate sub-shells+ Add f_count to replace $(set -- ...;echo $#) -- eliminate sub-shells+ Add f_count_ifs to replace $(IFS=x;set -- ...;echo $#) -- no sub-shells+ Replace var=&quot;$var${var:+ }...&quot; in loops with var=&quot;$var ...&quot; with a follow-  up var=&quot;${var# }&quot; to trim leading whitespace -- optimize loops+ Use $var_to_set arg of f_resolv_conf_nameservers -- eliminate sub-shells+ Comments for the f_eval_catch function+ Remove a duplicate `local ... desc ...&apos; in f_device_get_all of device.subr+ Use $var_to_set arg of f_device_capacity -- eliminate sub-shells+ Whitespace fixes in f_dialog_init of dialog.subr+ Optimize f_inet_atoi of media/tcpip.subr for performance -- sub-shell free+ In several cases, send stderr to /dev/null -- clean up runtime execution+ Change f_err of common.subr to go to program stderr not terminal stderr,  allowing redirection of output from functions that use f_err+ Disable debugging when using f_getvar to get variable argument to  f_startup_rcconf_map_expand of startup/rcconf.subr+ Use f_replace_all instead of $(echo ... | tr | sed) -- performance+ Add a $var_to_set option to f_index_{file,menusel_{command,keyword}} of  common.subr -- centralize sub-shells

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Sat, 07 Dec 2013 00:31:01 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0bfd163f522701b486e066fa2e56624c02f5081a - Merge head r233826 through r256722.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#0bfd163f522701b486e066fa2e56624c02f5081a</link>
        <description>Merge head r233826 through r256722.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Fri, 18 Oct 2013 09:32:02 +0000</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d1d015864103b253b3fcb2f72a0da5b0cfeb31b6 - Merge from head</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#d1d015864103b253b3fcb2f72a0da5b0cfeb31b6</link>
        <description>Merge from head

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Thu, 05 Sep 2013 20:18:59 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>40f65a4df509c6b29b9e72407c7afefe28838844 - IFC @ r254014</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#40f65a4df509c6b29b9e72407c7afefe28838844</link>
        <description>IFC @ r254014

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Wed, 07 Aug 2013 00:09:49 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>92e0a672a849f5d796f96108701ca1641bd77bc9 - IFC @ r253461</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#92e0a672a849f5d796f96108701ca1641bd77bc9</link>
        <description>IFC @ r253461

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Fri, 19 Jul 2013 03:27:04 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>552311f4bb98c81b1b9e0e81d74e0262fc12110b - IFC @253398</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#552311f4bb98c81b1b9e0e81d74e0262fc12110b</link>
        <description>IFC @253398

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Wed, 17 Jul 2013 01:32:29 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8e37a7c8b904c50714931a3ef635023dd658499e - Fix typos in the BSD License.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#8e37a7c8b904c50714931a3ef635023dd658499e</link>
        <description>Fix typos in the BSD License.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Sun, 07 Jul 2013 18:51:44 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f8ea072a542112d5e0e74a2d6ecf75d967c3054c - Be consistent with other usr.sbin programs w/respect to the copyright</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#f8ea072a542112d5e0e74a2d6ecf75d967c3054c</link>
        <description>Be consistent with other usr.sbin programs w/respect to the copyrightwording (&quot;All rights reserved.&quot;); I had the casing wrong on many instances.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Sun, 07 Jul 2013 18:21:30 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2642f6b2c65b1a21f54c1c729a72ff96a0f59c37 - IFC @ r252288</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#2642f6b2c65b1a21f54c1c729a72ff96a0f59c37</link>
        <description>IFC @ r252288

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Thu, 27 Jun 2013 20:27:34 +0000</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c9c67103c371140fa440f0be08eaa8f308b23239 - More whitespace.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#c9c67103c371140fa440f0be08eaa8f308b23239</link>
        <description>More whitespace.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Mon, 24 Jun 2013 20:58:54 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cfe30d02adda7c3b5c76156ac52d50d8cab325d9 - Merge fresh head.</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#cfe30d02adda7c3b5c76156ac52d50d8cab325d9</link>
        <description>Merge fresh head.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Wed, 19 Jun 2013 11:36:13 +0000</pubDate>
        <dc:creator>Gleb Smirnoff &lt;glebius@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c3755aa30cbddc30cbdc26707aac2606e9cd6ec5 - Centralize standard getopts arguments, both for convenience and to correct</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#c3755aa30cbddc30cbdc26707aac2606e9cd6ec5</link>
        <description>Centralize standard getopts arguments, both for convenience and to correcta bug in which certain combinations of arguments produced unexpected resultssuch as `-dX&apos; (now properly produces debugging and X11), `-XS&apos; (now properlyproduces X11 in secure mode), `-df-&apos; (enables debugging when reading ascript from standard-input, etc. Multi-word variations such as `-d -X&apos;,`-X -S&apos;, `-d -f-&apos;, `-d -f -&apos;, etc. also work as expected. Also tested werevariations in argument order, which are now working as expected.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Tue, 14 May 2013 03:21:13 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d3a0f9181641cfebdceac242e7a496001c67c28e - UI improvements. First, implement --default-item whenever and wherever</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#d3a0f9181641cfebdceac242e7a496001c67c28e</link>
        <description>UI improvements. First, implement --default-item whenever and whereverpossible to save keystrokes. Second, overhaul startup/rcdelete for muchimproved performance. Last, but not least, kill-off useage of --clearand implement --keep-tite in harmony to minimize jarring transitions.Also, fix local variable names where necessary while we&apos;re here withother minor comment-enhancements/typo-corrections.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Mon, 22 Apr 2013 05:52:06 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e14ddd1f16e7e5788392c50de21ea7c927e0690c - Add new flags `-d&apos; (sets debug=1) and `-D file&apos; (sets debugFile) and</title>
        <link>http://opengrok.net:8080/history/src/usr.sbin/bsdconfig/networking/hostname#e14ddd1f16e7e5788392c50de21ea7c927e0690c</link>
        <description>Add new flags `-d&apos; (sets debug=1) and `-D file&apos; (sets debugFile) andimprove debugging initialization. Also fixup USAGE statements while we&apos;rehere. Also, change initialization of main program to _not_ change workingdirectory, allowing the debugFile to be relative without confusion.

            List of files:
            /src/usr.sbin/bsdconfig/networking/hostname</description>
        <pubDate>Mon, 22 Apr 2013 05:02:34 +0000</pubDate>
        <dc:creator>Devin Teske &lt;dteske@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
