aboutsummaryrefslogtreecommitdiff
path: root/share/man/man8
Commit message (Collapse)AuthorAgeFilesLines
* Add rc.resume(8) alias for rc(8) to fix the manpage cross referencesEnji Cooper2019-02-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | This issue was noticed when running `make manlint` as part of MFCing r342597 to ^/stable/11: ``` $ make -C share/man/man8 rc.8lint mandoc -Tascii -Tlint rc.8 mandoc: rc.8:548:6: STYLE: referenced manual not found: Xr rc.resume 8 $ ``` This is a followup commit to r339818. Reviewed by: eugen Approved by: jtl (mentor) MFC after: 1 week MFC to: ^/stable/12 Differential Revision: https://reviews.freebsd.org/D19158 Notes: svn path=/head/; revision=344066
* rc.subr: Provide rc_service variable for service scriptsKyle Evans2019-01-051-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | Some rc scripts in ports (e.g. uwsgi, apache, openvpn) allow for 'application profiles' that usually require the rc script to be invoked again for each active profile. Because there's no consistent way to determine the path because it differs between manual/service(8) invocations and /etc/rc invocations, this leads to patterns like these: - www/uwsgi hardcodes the script path - security/openvpn guesses either $_file or $0 based on $0 = /etc/rc Instead of forcing rc scripts to guess, provide an rc_service variable to the scripts that gets set appropriately both for direct execution or when a script is being executed via run_rc_script (e.g. /etc/rc). This is our analog of an OpenRC variable with the same name, different case (RC_SERVICE). PR: 234614 Reported by: koobs Reviewed by: dteske, jilles MFC after: 3 days Notes: svn path=/head/; revision=342792
* Remove legacy rc.d infrastructure references from rc(8)Enji Cooper2018-12-291-14/+1
| | | | | | | | | | | | | | Legacy rc.d scripts (.sh extension) have not been supported since r193118. Remove the outdated references to the legacy format, as they are no longer valid. Bug: 193936 MFC after: 1 week Reviewed by: cress, emaste (mentor) Differential Revision: https://reviews.freebsd.org/D18666 Notes: svn path=/head/; revision=342597
* Rework UEFI ESP generationRebecca Cran2018-12-201-24/+5
| | | | | | | | | | | | | | | | Currently, the installer uses pre-created 800KB FAT12 filesystems that it dd's onto the ESP partition. This changeset improves that by having the installer generate a FAT32 filesystem directly onto the ESP using newfs_msdos and then copying loader.efi into /EFI/freebsd. For live installs it then runs efibootmgr to add a FreeBSD boot entry in the BIOS. Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D17947 Notes: svn path=/head/; revision=342283
* rc.subr(8): Document when required_* variables are processedMateusz Piotrowski2018-11-071-1/+9
| | | | | | | | | | | | | | | | At the moment rc.subr(8) supports the following required_* variables: required_dirs, required_files, required_modules and required_vars. This patch documents when every of those required_* variables is actually processed (before or after running start_precmd). Reviewed by: bcr Approved by: krion (mentor, implicit), mat (mentor, implicit) Sponsored by: Bally Wulff Games & Entertainment GmbH Differential Revision: https://reviews.freebsd.org/D17895 Notes: svn path=/head/; revision=340223
* Add new rc keywords: enable, disable, deleteDevin Teske2018-10-311-1/+16
| | | | | | | | | | | | | | | | | | This adds new keywords to rc/service to enable/disable a service's rc.conf(5) variable and "delete" to remove the variable. When the "service_delete_empty" variable in rc.conf(5) is set to "YES" (default is "NO") an rc.conf.d file (in /etc/ or /usr/local/etc) is deleted if empty after modification using "service $foo delete". Submitted by: lme (modified) Reviewed by: 0mp (previous version), lme, bcr Relnotes: yes Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D17113 Notes: svn path=/head/; revision=339971
* rcorder(8): add support for /etc/rc.resume, so it calls "rcorder -k resume"Eugene Grosbein2018-10-271-0/+2
| | | | | | | | | | | | | | | | and runs scripts containing "KEYWORD: resume" with single "resume" argument. Working example is the port sysutils/cpupdate that defines extra_commands="resume" to reload CPU microcode cleared by suspend/resume sequence. This change does nothing for a system having no scripts with KEYWORD: resume. MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D15247 Notes: svn path=/head/; revision=339818
* Correct directions for building pxeboot. One needs to cd to src/stand,Warner Losh2018-09-101-2/+2
| | | | | | | | | | not src/stand/i386 as the directions say. PR: 231284 Approved by: re@ (gjb) Notes: svn path=/head/; revision=338559
* Create a manual page for beinstall.sh.Mateusz Piotrowski2018-08-202-1/+138
| | | | | | | | | Reviewed by: bcr, brd, will Approved by: krion (mentor) Differential Revision: https://reviews.freebsd.org/D16742 Notes: svn path=/head/; revision=338100
* Fix "mandoc -Tlint" warnings.Mateusz Piotrowski2018-08-061-2/+2
| | | | | | | | | Reviewed by: bcr Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D15580 Notes: svn path=/head/; revision=337378
* Document the new ${name}_env_file featureMark Felder2018-06-191-1/+8
| | | | | | | | | Approved by: bcr MFH: 3 days Differential Revision: https://reviews.freebsd.org/D15578 Notes: svn path=/head/; revision=335383
* rc.subr.8: Improve documentation of ${name}_limits and ${name}_login_classJilles Tjoelker2018-04-031-5/+11
| | | | | | | | Submitted by: 0mp Differential Revision: https://reviews.freebsd.org/D14928 Notes: svn path=/head/; revision=331955
* Update the diskless manpageRodrigo Osorio2018-03-061-2/+2
| | | | | | | | | | | | | According with /etc/rc.initdiskless the default mfs allocation is now 5Mb (10240 x 512 bytes sectors) Submitted by: rodrigo Reviewed by: bcr Approved by: manpages (bcr) Differential Revision: https://reviews.freebsd.org/D14592 Notes: svn path=/head/; revision=330540
* - Document new ${name}_limits rc.conf optionDmitry Marakasov2018-02-061-1/+8
| | | | | | | | | Approved by: cy MFC after: 2 weeks (along with 328331 which introduced this option) Differential Revision: https://reviews.freebsd.org/D14028 Notes: svn path=/head/; revision=328931
* uefi.8: describe architecture-specific default pathEd Maste2018-01-251-5/+9
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=328396
* Install uefi.8 also on arm64Ed Maste2018-01-251-1/+1
| | | | | | | | | | | Our standard boot method for arm64 is via UEFI, so install the man page that describes the boot process. MFC after: 1 week Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=328395
* Fix manual page install on non-amd64Li-Wen Hsu2018-01-251-2/+3
| | | | | | | | Reviewed by: emaste, imp Differential Revision: https://reviews.freebsd.org/D14038 Notes: svn path=/head/; revision=328388
* Add efi.8 as a man page link to uefi.8Ed Maste2018-01-241-1/+2
| | | | | | | | | | | | FreeBSD and industry has been inconsistent in the use of UEFI and EFI. They are essentially just different versions of the same specification and are often used interchangeably. Make it easier for users to find information by making efi(8) an alias for uefi(8). Reported by: imp, jhb Notes: svn path=/head/; revision=328378
* uefi.8: add .Xr cross references to new efi toolsEd Maste2018-01-241-0/+3
| | | | Notes: svn path=/head/; revision=328376
* uefi.8: note that UEFI and EFI are used interchangeablyEd Maste2018-01-241-0/+4
| | | | Notes: svn path=/head/; revision=328375
* uefi.8: update HISTORY and remove incomplete AUTHORSEd Maste2018-01-241-14/+7
| | | | | | | | | | | | | | | | | | | - EFI support appeared in 5.0 for ia64 - arm64 UEFI support added in 11.0 The AUTHORS section included the folks responsible for the bulk of the work to bring UEFI support to amd64, but missed those who did the original work on ia64, the initial port to i386, the ports to arm64 and arm, and have generally maintained and improved general UEFI support since then. It's unwieldly to include everyone and would quickly become outdated again anyhow, so just remove the AUTHORS section. Reviewed by: manu Discussed with: jhb Differential Revision: https://reviews.freebsd.org/D14033 Notes: svn path=/head/; revision=328374
* Move sys/boot to stand. Fix all references to new locationWarner Losh2017-11-141-1/+1
| | | | | | | Sponsored by: Netflix Notes: svn path=/head/; revision=325834
* Update several more URLsEitan Adler2017-10-291-1/+1
| | | | | | | | - Primarily http -> https - Primarily FreeBSD project URLs Notes: svn path=/head/; revision=325096
* uefi.8: mention use on (32-bit) armEd Maste2017-10-231-2/+2
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=324936
* Mention sysrc(8) as scripting interface for the modification of configStefan Eßer2017-10-211-0/+3
| | | | | | | | | | | files. This is a follow up commit to r324721, which added sysrc(8) to the SEE ALSO list. Submitted by: Kurt Jaeger (lists at opsec.eu) MFC after: 1 week Notes: svn path=/head/; revision=324823
* Add references to sysrc(8).Stefan Eßer2017-10-181-1/+2
| | | | | | | Reported by: Kurt Jaeger (lists at opsec.eu) Notes: svn path=/head/; revision=324721
* More ATM and NATM removalBrooks Davis2017-04-272-11/+1
| | | | | | | | | Submitted by: ak Reviewed by: ngie Differential Revision: https://reviews.freebsd.org/D10511 Notes: svn path=/head/; revision=317508
* Remove backup_uses_rcs from rc.subrBaptiste Daroussin2016-09-181-24/+3
| | | | | | | | | | | | In preparation for the removal of GNU rcs from base, remove the backup_uses_rcs functionality from the rc.subr backup_file feature. This functionnality was off by default Reviewed by: wblock Differential Revision: https://reviews.freebsd.org/D7883 Notes: svn path=/head/; revision=305929
* Last few instances of "sentence not on new line".Edward Tomasz Napierala2016-06-081-1/+2
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=301591
* o -f, -i, -K, -q, -v, -X flags documented.Maxim Konovalov2016-05-191-2/+17
| | | | Notes: svn path=/head/; revision=300199
* Fix r299162Enji Cooper2016-05-061-1/+3
| | | | | | | | | | | | | | | | share/man/man8/Makefile: - Add src.opts.mk so MK_NIS can be tested - Fix typo in MK_NIS conditional tools/build/mk/OptionalObsoleteFiles.inc: - Remove WIP diff from ^/user/ngie/detangle-rc MFC after: 1 week X-MFC with: r299162 Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=299163
* Only install NIS section 8 manpages if MK_NIS != noEnji Cooper2016-05-061-1/+5
| | | | | | | | MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=299162
* Bump the date of the manpage after r298515Baptiste Daroussin2016-04-231-1/+1
| | | | | | | Sponsored by: Essen Hackathon 2016 Notes: svn path=/head/; revision=298517
* - Add two new subcommands to rc.subr:Lars Engels2016-04-231-0/+4
| | | | | | | | | | | | | "describe" shows an rc script's description "extracommands" shows an rc script's non-standard commands like "reload", "configtest", "keygen", etc - Update the rc(8) manpage and the tcsh(1) completion examples to reflect these changes Approved by: bapt Sponsored by: Essen Linuxhotel Hackathon 2016 Differential Revision: D452 Notes: svn path=/head/; revision=298515
* MFHGlen Barber2016-02-241-1/+11
|\ | | | | | | | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295957
| * - Add a global option where we can protect processes when swap spaceMarcelo Araujo2016-02-241-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is exhausted. How to use: Basically we need to add on rc.conf an another option like: If we want to protect only the main processes. syslogd_oomprotect="YES" If we want to protect all future children of the specified processes. syslogd_oomprotect="ALL" PR: 204741 (based on) Submitted by: eugen@grosbein.net Reviewed by: jhb, allanjude, rpokala and bapt MFC after: 4 weeks Relnotes: Yes Sponsored by: gandi.net Differential Revision: https://reviews.freebsd.org/D5176 Notes: svn path=/head/; revision=295949
* | MFHGlen Barber2016-02-151-20/+30
|\| | | | | | | | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295639
| * Explain that boot1.efi prefers ZFS over UFSEd Maste2016-02-111-0/+7
| | | | | | | | | | | | | | Reported by: smh Notes: svn path=/head/; revision=295522
| * Update uefi.8 for ZFS and multi device boot supportEd Maste2016-02-111-19/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | As of r294068 boot1.efi can load loader.efi from ZFS. As of r295320 boot1.efi prefers to load loader.efi from the same device it was loaded from. MFC after: 3 days Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=295497
| * Document boot1.efi's handling of /boot.config, added in r294768Ed Maste2016-02-111-1/+12
| | | | | | | | | | | | | | | | MFC after: 3 days Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=295496
* | Separate manual pages into their own package.Glen Barber2016-01-211-0/+2
|/ | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=294508
* It's 2015, and some people are still trying to use fdisk and thenEdward Tomasz Napierala2015-09-021-1/+1
| | | | | | | | | | | | | | | | go asking what debug flags to set for GEOM to make it work. Advice them to use gpart(8) instead. Something similar should probably done with disklabel, but I need to rewrite the disklabel examples first. Reviewed by: wblock@ MFC after: 1 month Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3315 Notes: svn path=/head/; revision=287396
* Fix mandoc warnings/errors.Christian Brueffer2015-08-123-7/+10
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=286663
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge sync of headSimon J. Gerraty2015-05-272-3/+4
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=283595
| * \ Merge from head@274682Simon J. Gerraty2014-11-195-98/+184
| |\ \ | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=274683
| * \ \ Merge head from 7/28Simon J. Gerraty2014-08-194-9/+9
| |\ \ \ | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=270164
| * \ \ \ Merge headSimon J. Gerraty2014-04-286-18/+158
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265044
| * \ \ \ \ Merge head@256284Simon J. Gerraty2013-10-133-16/+18
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=256424