summaryrefslogtreecommitdiff
path: root/init.d/bootmisc
Commit message (Collapse)AuthorAge
* Don't check for root in prefix.Roy Marples2008-03-02
|
* Hack around busybox find / rm not handling -- correctly.Roy Marples2008-01-25
|
* Don't special case innd.pid and handle files in run that start with -Roy Marples2008-01-14
|
* Update copyrights, my email and license.Roy Marples2008-01-11
|
* Adopt a more C style for scripts and remove vim settings.Roy Marples2008-01-11
|
* Remove full license text from shell cripts.Roy Marples2008-01-11
|
* Loads of NetBSD tweaks here.Roy Marples2008-01-10
|
* Remove Gentoo copyright from all files that I know I have writtenRoy Marples2007-12-14
|
* Use yesno moreRoy Marples2007-12-09
|
* Remove rc_service_wait as runscript.c should do the waiting. ↵Roy Marples2007-12-05
| | | | rc_deptree_depend now returns the exact depends as listed. This is so we can support a new 'keywords' directive. We can add whatever here, like 'notimeout' which means that an init script doesn't timeout. This removes the hardcoded check on checkfs and checkroot.
* Move /etc/conf.d/rc to /etc/rc.conf.Roy Marples2007-11-23
| | | | | | | Lowercase all configurable variables, non configurations remain uppercase. Replace rc_env_bool with rc_yesno. Split localmount info procfs (Linux) and dumpon, savecore (BSD)
* We no longer support pam_console directly. Also, we cannot use chgrp due to ↵Roy Marples2007-11-20
| | | | silly LDAP issues.
* We don't use /var/lock anymoreRoy Marples2007-11-20
|
* Move sysctl into it's own init scriptRoy Marples2007-11-20
|
* relicense as 2-clause BSD, with the kind permission of GentooRoy Marples2007-11-14
|
* Control of system defined env vars should not be done by us.Roy Marples2007-11-14
|
* Indent fixesRoy Marples2007-10-27
|
* Fix tmp cleaningRoy Marples2007-10-23
|
* Use mkdir to test. Also, quote for robustnessRoy Marples2007-09-24
|
* only do the X lock stuff in /tmp so people can overload WIPE_TMP_DIRS for a ↵Mike Frysinger2007-09-09
| | | | general "wipe this directory" option. also force +t on /tmp and /var/tmp.
* Allow people to specify a list of temp dirs to clean in bootmisc #191807.Mike Frysinger2007-09-09
|
* Setup wtmp for BSD tooRoy Marples2007-08-23
|
* Ensure that /var/log exists tooRoy Marples2007-08-02
|
* Create needed dirs in bootmisc if they do not existRoy Marples2007-07-30
|
* Duh, test itRoy Marples2007-07-27
|
* Fix bootmisc stopping for pam_console and write halt record correctly.Roy Marples2007-07-26
|
* Merge some of reb's OpenBSD fixes inRoy Marples2007-07-25
|
* Use printf so we don't put blank lines at the top of new files and fix ↵Roy Marples2007-07-16
| | | | mountinfo for nfs roots
* Use echo instead of touch - saves on forkingRoy Marples2007-07-13
|
* Take no chances with PATH, use our env-updateRoy Marples2007-07-09
|
* Add an option to fork ldconfig in env-update, #182794. Also, preserve the ↵Roy Marples2007-07-09
| | | | entire line in /etc/env.d/foo if it begins with $
* busybox sysctl does not support -qRoy Marples2007-05-16
|
* Don't dmesg for VPS systemsRoy Marples2007-04-26
|
* Don't sysctl for VPS systemsRoy Marples2007-04-26
|
* Apply sysctl if we don't have an init scriptRoy Marples2007-04-10
|
* Punt the rc-depend man page as it's been moved out of ↵Roy Marples2007-04-06
| | | | /usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.1.2:/usr/kde/3.5/bin:/usr/qt/3/bin:/usr/games/bin
* Rewrite the core parts in C. We now provide librc so other programs canRoy Marples2007-04-05
query runlevels, services and state without using bash. We also provide libeinfo so other programs can easily use our informational functions. As such, we have dropped the requirement of using bash as the init script shell. We now use /bin/sh and have strived to make the scripts as portable as possible. Shells that work are bash and dash. busybox works provided you disable s-s-d. If you have WIPE_TMP set to yes in conf.d/bootmisc you should disable find too. zsh and ksh do not work at this time. Networking support is currently being re-vamped also as it was heavily bash array based. As such, a new config format is available like so config_eth0="1.2.3.4/24 5.6.7.8/16" or like so config_eth0="'1.2.3.4 netmask 255.255.255.0' '5.6.7.8 netmask 255.255.0.0'" We will still support the old bash array format provided that /bin/sh IS a link it bash. ChangeLog for baselayout-1 can be found in our SVN repo.