summaryrefslogtreecommitdiff
path: root/etc
AgeCommit message (Collapse)Author
2012-12-02use the more compact version of the check for ifconfig'able interfacesRobert Peichaer
from install.sub with feedback from and ok halex
2012-12-02- remove isalphanumeric() and replace it with a shell pattern, thatRobert Peichaer
tries a bit harder to identify invalid interface names and in this case emit an error message. - use [[ $1 == autoboot ]] to avoid a shell error message due to possible spaces in first argument - no change in functionality discussed with krw and halex ok ("I like this") krw
2012-11-26regenJasper Lievisse Adriaanse
2012-11-21rc_restart() does not exists. What the 'restart' action does is to runAntoine Jacoutot
'stop' then 'start'; so to prevent this daemon from restarting itself, rc_stop=NO is enough. ok robert@
2012-11-19Remove useless test: rc_rm_runfile() uses rm -f which always returns 0Antoine Jacoutot
so we don't care if the file is present or not; also this function should never return a failure. ok halex@
2012-11-18Don't output "$action is not supported" when running an rc.d(8) scriptAntoine Jacoutot
from /etc/rc(8). This prevents the warning to be displayed at shutdown time when the script has rc_stop=NO. req. and input from fgsch@ "go ahead" schwarze@ input from an ok halex@, ok robert@
2012-11-18Remove pointless local declaration.Antoine Jacoutot
ok halex@
2012-11-17Revert previous; there are more things to consider.Antoine Jacoutot
2012-11-17Remove pre-rc.d(8) backward compatibility.Antoine Jacoutot
See faq/current.html for more information. The local_rcconf variable is not used anywhere anymore so drop it. suggested by deraadt@ ok sthen@
2012-11-12Don't check if ${local_rcconf} is defined before sourcing rc.conf but doAntoine Jacoutot
it unconditionally. The only place local_rcconf could have been defined is from /etc/rc sourcing rc.conf but then the variable is not exported so it will never be seen by rc.subr. ok robert@
2012-11-05Run chown/chgrp iff the preceding mknod call worked; thus if if there'sJasper Lievisse Adriaanse
actually something to chown/chgrp. ok todd@
2012-11-04Start ldomd(8).Mark Kettenis
2012-11-04Script for ldomd(8).Mark Kettenis
ok dcoppa@, deraadt@
2012-11-03regenMark Kettenis
2012-11-03Add /dev/ldom[0-3].Mark Kettenis
2012-10-28OK, enough is enough. So many people persist in the practice of editingTheo de Raadt
this file, even years after the rc.conf / rc.conf.local split happened. One way to improve upon this is to put a big fat comment at the top of the file. (Other ways to improve this is by renaming files, but that will just create more confusion). ok aja robert
2012-10-26sort to be consistent with the other rc scripts: rc_** actions come afterAntoine Jacoutot
the pexp.
2012-10-26disable reload since SIGHUP kills smtpdAlexander Hall
ok chl@ gilles@
2012-10-20regenMark Kettenis
2012-10-20Add /dev/hvctl and /dev/spds.Mark Kettenis
2012-10-13use the les specific "checksums"; Rob PierceTheo de Raadt
2012-10-13Forgot to add _iscsid to mail/aliasesDavid Coppa
Pointed out by ajacoutot@
2012-10-12Add the _iscsid user, required by iscsidDavid Coppa
OK claudio@
2012-10-11- replace "all" with "any"Gilles Chehade
- add examples for how to accept mail from external source and for a specific domain
2012-10-06Update for xkeyboard-config 2.7.Alexandr Shadchin
2012-10-05Add targets for the 6k and 8k bit moduli componentsDarren Tucker
2012-09-23Remove /usr/X11R6/lib/X11/config/Matthieu Herrb
2012-09-20Enable npppd and npppctl in default build. Add npppd to rc andYASUOKA Masahiko
install sample configs to /etc/. ok claudio deraadt henning mcbride
2012-09-18Add SNMPv3 USM example (commented out)Reyk Floeter
2012-09-13Simplify the way we call the rc.d(8) script in "restart".Antoine Jacoutot
ok sthen@
2012-09-10we need a fakeramdisk, like on sparc64Theo de Raadt
2012-09-08syncMartin Pieuchot
2012-09-08Add drm nodeMartin Pieuchot
ok kettenis@
2012-09-01Make '-f' only affects the "start" action.Antoine Jacoutot
There is no reason we couldn't reload|stop a daemon even when _flags is set to NO. As a bonus side effect, we can now see usage() on disabled scripts. discussed with sthen@ and espie@ ok sthen@
2012-08-29regen moduli file (<=4kbit). ok deraadt djmDarren Tucker
2012-08-29Make the update-moduli rule append the 6kbit and 8kbit params so that weDarren Tucker
can trivially regen the <=4k bit ones. ok djm@
2012-08-26Hook up nginx to rc(8).Antoine Jacoutot
ok deraadt@ robert@
2012-08-23sync: remove lingering nnpfs, pointed out by jmc@Todd T. Fries
2012-08-23create the man8/beagle dirTheo de Raadt
2012-08-23enter etc.beagle so MAKEDEV.8 can be generated properly during buildsTodd T. Fries
prompted by deraadt@
2012-08-23no more afs activation goopTheo de Raadt
2012-08-23stop installing the etc/afsTheo de Raadt
2012-08-23syncTheo de Raadt
2012-08-23get rid of the nnpfs nodesTheo de Raadt
2012-08-21Use the new "-q" option of pgrep(1) instead of redirecting stdoutAntoine Jacoutot
to /dev/null.
2012-08-20wire up the bits for tftp-proxy, which is called tftpproxy from rc.d'sDavid Gwynne
point of view. mostly ok sthen@ ajacoutot@, who were discussing the feng shui of the start_daemons chunk
2012-08-14Optimize checks for /etc/exports.Antoine Jacoutot
from robert at peichaer dot org discussed with and ok halex@
2012-08-13unset _rcflags and _rcuser so that they don't get inherited by rc.d(8)Antoine Jacoutot
scripts; from robert at peichaer dot org ok halex@ While here, put the "sanitation" commands in their own block.
2012-08-13Set the daemon_class as readonly as it should be (and is documented asAntoine Jacoutot
such). from robert at peichaer dot org modified after a discussion with halex@ ok halex@ robert@
2012-08-11Make a couple of variables local.Antoine Jacoutot
from robert at peichaer dot org ok halex@