aboutsummaryrefslogtreecommitdiff
path: root/libexec/rc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Revert r359294 per manu's requestBaptiste Daroussin2020-03-251-17/+14
| | | | | | | | | It breaks etcupdate Reported by: cy Notes: svn path=/head/; revision=359296
* pkgbase: Stop threating rc files as config filesEmmanuel Vadot2020-03-251-14/+17
| | | | | | | | | | | | rc scripts arent configuration files so use FILES instead of CONFS. While here put rc scripts into related package (sendmail in the FreeBSD-sendmail package, wpa_supplicant in the FreeBSD-wpa etc ...) Reviewed by: bapt, emaste Differential Revision: https://reviews.freebsd.org/D24177 Notes: svn path=/head/; revision=359294
* pkgbase: Move rc scripts and related files to their own packagesEmmanuel Vadot2019-09-051-1/+4
| | | | | | | | | | | | It doesn't need to be in runtime and might help people who want to experiment with other rc system or don't use one (like in small embedded mfsroot). Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21499 Notes: svn path=/head/; revision=351851
* pkgbase: Move rc.sendmail to libexec/rcEmmanuel Vadot2019-05-221-0/+3
| | | | | | | Reviewed by: bapt Notes: svn path=/head/; revision=348100
* pkgbase: Move rc.bsdextended to libexec/rcEmmanuel Vadot2019-05-221-1/+1
| | | | | | | Reviewed by: bapt Notes: svn path=/head/; revision=348099
* pkgbase: Move rc.firewall to libexec/rcEmmanuel Vadot2019-05-221-0/+5
| | | | | | | | | Put it with all the other rc files Reviewed by: bapt Notes: svn path=/head/; revision=348098
* While preparing to move init(8) to its own package as indicatedBjoern A. Zeeb2018-10-181-1/+1
| | | | | | | | | | | | | | | | | | | in r339413, a current pkgbase update problem came up. For users testing pkgbase at the moment there is no (automatic) way to pick up new base packages (yet). As a result rather than also moving init(8) to its own package, back out the part of the change in r339413 that moved rc* to its own package and defer creating new packages until the infrastructure is in place to handle these cases. Both init and rc* are considered too problematic to be lost by early adaptors at this stage. Discussed with: brd Reviewed by: brd Approved by: re (gjb) Notes: svn path=/head/; revision=339417
* Move the rc framework out of sbin/init into libexec/rc.Bjoern A. Zeeb2018-10-171-0/+16
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