<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.sbin/sysrc, branch releng/14.3</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F14.3</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F14.3'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2023-08-16T17:55:10Z</updated>
<entry>
<title>Remove $FreeBSD$: two-line nroff pattern</title>
<updated>2023-08-16T17:55:10Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2023-08-16T17:55:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fa9896e082a1046ff4fbc75fcba4d18d1f2efc19'/>
<id>urn:sha1:fa9896e082a1046ff4fbc75fcba4d18d1f2efc19</id>
<content type='text'>
Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
</content>
</entry>
<entry>
<title>Remove $FreeBSD$: one-line sh pattern</title>
<updated>2023-08-16T17:55:03Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2023-08-16T17:55:03Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf'/>
<id>urn:sha1:d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</id>
<content type='text'>
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
</content>
</entry>
<entry>
<title>sysrc.8: Mention it requires chroot(8)</title>
<updated>2022-04-03T11:54:11Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@gmail.com</email>
</author>
<published>2022-04-03T11:53:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1a0bd2665a4be12c857adccc13661985b7259301'/>
<id>urn:sha1:1a0bd2665a4be12c857adccc13661985b7259301</id>
<content type='text'>
Option -R uses chroot(8). Mention it in the corresponding section.

MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D34630
</content>
</entry>
<entry>
<title>Update the spelling of my name</title>
<updated>2019-04-22T17:52:46Z</updated>
<author>
<name>Enji Cooper</name>
<email>ngie@FreeBSD.org</email>
</author>
<published>2019-04-22T17:52:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=da5069e1f7daaef1e7157876d6044de6f3a08ce2'/>
<id>urn:sha1:da5069e1f7daaef1e7157876d6044de6f3a08ce2</id>
<content type='text'>
Previous spellings of my name (NGie, Ngie) weren't my legal spelling. Use Enji
instead for clarity.

While here, remove "All Rights Reserved" from copyrights I "own".

MFC after:	1 week
</content>
</entry>
<entry>
<title>sysrc.8: Pet igor and mandoc</title>
<updated>2019-02-26T09:28:10Z</updated>
<author>
<name>Mateusz Piotrowski</name>
<email>0mp@FreeBSD.org</email>
</author>
<published>2019-02-26T09:28:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4f2f8d7d140d47722afcc3f24c799fac2881e76c'/>
<id>urn:sha1:4f2f8d7d140d47722afcc3f24c799fac2881e76c</id>
<content type='text'>
Reviewed by:	bcr
Approved by:	bcr (doc)
Approved by:	krion (mentor, implicit), mat (mentor, implicit)
Differential Revision:	https://reviews.freebsd.org/D19348
</content>
</entry>
<entry>
<title>sysrc(8): Send error message to stderr (not stdout)</title>
<updated>2018-07-16T18:53:17Z</updated>
<author>
<name>Devin Teske</name>
<email>dteske@FreeBSD.org</email>
</author>
<published>2018-07-16T18:53:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e719942791223119e76c6b15e5d461ad2770be5f'/>
<id>urn:sha1:e719942791223119e76c6b15e5d461ad2770be5f</id>
<content type='text'>
PR:		bin/229806
Reported by:	Andreas Sommer &lt;andreas.sommer87@googlemail.com&gt;
MFC after:	3 days
X-MFC-to:	stable/11 stable/10 stable/9
Sponsored by:	Smule, Inc.
</content>
</entry>
<entry>
<title>sysrc(8): Exit with failure on API error</title>
<updated>2018-06-17T03:33:29Z</updated>
<author>
<name>Devin Teske</name>
<email>dteske@FreeBSD.org</email>
</author>
<published>2018-06-17T03:33:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5c165dcf50e59d8b45cfe24b71f5ab48058b70f2'/>
<id>urn:sha1:5c165dcf50e59d8b45cfe24b71f5ab48058b70f2</id>
<content type='text'>
Fix exit status when f_sysrc_set() fails. Errors in the underlying API
provided by bsdconfig(8) -- /usr/share/bsdconfig/sysrc.subr -- were not
being communicated back to the command-line. This was affecting ansible
modules using sysrc as they were not able to accurately test for error.

PR:		bin/211448
Reported by:	Christian Schwarz &lt;me@cschwarz.com&gt;
MFC after:	3 days
X-MFC-to:	stable/11
Sponsored by:	Smule, Inc.
</content>
</entry>
<entry>
<title>sysrc(8): Test variable names for invalid characters</title>
<updated>2018-05-28T23:34:23Z</updated>
<author>
<name>Devin Teske</name>
<email>dteske@FreeBSD.org</email>
</author>
<published>2018-05-28T23:34:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a03d5f8b02a5a5d1009121ed4480dc9d13fb1fc1'/>
<id>urn:sha1:a03d5f8b02a5a5d1009121ed4480dc9d13fb1fc1</id>
<content type='text'>
PR:		bin/187461
Reported by:	ebay@looksharp.net
MFC after:	4 weeks
X-MFC-to:	stable/11 (after 11.2-R)
Sponsored by:	Smule, Inc.
</content>
</entry>
<entry>
<title>Change my given name from "Garrett" to "Ngie"</title>
<updated>2016-06-13T10:30:49Z</updated>
<author>
<name>Enji Cooper</name>
<email>ngie@FreeBSD.org</email>
</author>
<published>2016-06-13T10:30:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2c212dcc1e961e879da6d7954f28c3e5d5e6defa'/>
<id>urn:sha1:2c212dcc1e961e879da6d7954f28c3e5d5e6defa</id>
<content type='text'>
A legal name change from "Garrett" to "Ngie", as well as a FreeBSD
account name change, is pending.

Approved by: re (hrs)
</content>
</entry>
<entry>
<title>jls(1) -&gt; jls(8)</title>
<updated>2016-02-29T17:30:34Z</updated>
<author>
<name>Edward Tomasz Napierala</name>
<email>trasz@FreeBSD.org</email>
</author>
<published>2016-02-29T17:30:34Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8f6e650985c672096ad008baef26ca060e4539f5'/>
<id>urn:sha1:8f6e650985c672096ad008baef26ca060e4539f5</id>
<content type='text'>
MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
</content>
</entry>
</feed>
