aboutsummaryrefslogtreecommitdiff
path: root/libexec/rc/rc.d/syscons
Commit message (Collapse)AuthorAgeFilesLines
* rc.d/syscons: remove spaces before tabEd Maste2020-10-251-1/+1
| | | | Notes: svn path=/head/; revision=367043
* Revert r346017 pending compiled-in zfs fixChris Rees2019-04-101-1/+1
| | | | | | | | | PR: 237172 Approved by: jilles Differential Revision: https://reviews.freebsd.org/D18670 Notes: svn path=/head/; revision=346072
* Remove now unnecessary kldstat check before attempting to load modules.Chris Rees2019-04-071-1/+1
| | | | | | | | | | | | | | | | | | Since r233109, kldload has the -n option, which silently ignores options that are already loaded. https://lists.freebsd.org/pipermail/freebsd-rc/2018-December/003899.html Note that this script no longer reports if the module is already loaded, but it could be argued this wasn't particularly useful information. PR: docs/234248 Reviewed by: bcr (docs), kib, rgrimes (visual) Approved by: jilles Differential Revision: https://reviews.freebsd.org/D18670 Notes: svn path=/head/; revision=346017
* Move the rc framework out of sbin/init into libexec/rc.Bjoern A. Zeeb2018-10-171-0/+374
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update because an rc script was touched. (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement of the rc framework with alternatives, such as openrc. Discussed with: brd (during BSDCam), kmoore Requested by: cem, bz PR: 231522 Approved by: re (gjb) Notes: svn path=/head/; revision=339413