aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d
Commit message (Collapse)AuthorAgeFilesLines
...
* Bring up ipsec interfaces last. (#481733)Bill Nottingham2009-01-271-8/+16
|
* Return success/failure correctly from start/stop. (#480677)Bill Nottingham2009-01-201-1/+7
|
* Fix typo. (#480799)Bill Nottingham2009-01-201-1/+1
|
* Determine reboot/halt via existing INIT_HALT environment variable. (#475227)Bill Nottingham2008-12-091-1/+1
| | | | No more magic files needed. In fact, I'm not sure they ever were. Whoops.
* __pids_var_run: Handle multi-line pid files correctly (#473287)Bill Nottingham2008-12-011-4/+9
| | | | | | | We were only reading the first line of pid files. Given that even those first lines could have multiple pids, this *shouldn't* break anything, but there may be some scripts with multi-line pid files that aren't expecting this.
* Tweak return codes (#242912)Bill Nottingham2008-11-261-2/+2
| | | | We'll see what breaks.
* Don't mkswap on halt (#469823)Bill Nottingham2008-11-041-2/+0
| | | | | Doing so blows away any label or UUID on the partition, which makes specifying encrypted swap by label or UUID fail miserably.
* Fix code that causes a syntax error on multiple cards. (#469156)Bill Nottingham2008-10-301-2/+0
| | | | | Just remove the compatibility case, and conflict with older alsa-utils that would require it.
* Add some LSB description stuff. (#225900)Bill Nottingham2008-09-301-0/+2
|
* Add some LSB description stuff. (#225900)Bill Nottingham2008-09-301-0/+2
|
* Remove %config from init scripts, network scripts. (#225900)Bill Nottingham2008-09-301-0/+0
| | | | Also, fix permissions on rc.d/init.d/functions.
* Use the pidfile before running pidof in status(). (#463205)Bill Nottingham2008-09-241-4/+6
| | | | This matches the behavior of killproc.
* Just use plymouth directly, not the rhgb-client wrapper.Bill Nottingham2008-09-232-9/+9
| | | | This fixes the fact that the semantics of --details changed.
* Use alsactl to save sound settings. (#462677, <jkysela@redhat.com>)Bill Nottingham2008-09-231-3/+4
|
* Check that we're on a tty before trying to start a repair shell. (#463161)Bill Nottingham2008-09-231-2/+2
| | | | | | If netfs isn't running from a tty (say, from NetworkManager), the attempt to start a shell will fail, and we'll immediately fall through to rebooting. That isn't good.
* Remove dead code.Bill Nottingham2008-09-171-18/+0
|
* https://bugzilla.redhat.com/show_bug.cgi?id=433702Harald Hoyer2008-09-162-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changes to init scripts to better support stateless: --rc.sysinit-- - don't update mtab in a r/o root - mount on sys and /dev/pts returns EBUSY on a readonly root - [ -n $CLIENTSTATE ] is always returning true, causing an unnecessary timeout --network-- - /etc/mtab may not have any mount information in the readonly-root cause, but the root mount is likely to be a network mount. Without this, nfs hangs the reboot process. --halt-- - don't try and update a read-only mtab --rwtab-- - /var/empty/sshd/etc/localtime needs to be overwritten by sshd at startup - /var/lib/random-seed is written to at shutdown; this fixes the error but doesn't return the functionality lost in a r/o /var/lib.
* https://bugzilla.redhat.com/show_bug.cgi?id=447928Harald Hoyer2008-09-161-1/+1
| | | | | | | | All networking scripts from /etc/sysconfig/network-scripts call logger without full path. This can prevent system from booting if let's say dcc is installed when compiled with wrong parameters and installs /usr/sbin/logger (see bellow) It's not really a bug but this can be easily prevented. All /etc/init.d scripts use full path for logger network-scripts should use it also
* Use the full path for arping.Bill Nottingham2008-09-021-1/+1
|
* Don't say that we're shutting off crypto if we aren't actually doing it.Bill Nottingham2008-08-291-3/+2
|
* Properly hide the plymouth splash if needed.Bill Nottingham2008-07-281-12/+0
| | | | Also, remove some old rhgb code.
* remove references to static dmraid/multipath binaries (#453987)Bill Nottingham2008-07-031-2/+2
|
* Don't export GRAPHICAL - plymouth is for all modes.Bill Nottingham2008-06-191-3/+1
| | | | Don't try to start rhgb.
* Revert "Remove rhgb support."Bill Nottingham2008-06-192-0/+24
| | | | This reverts commit c722b0ee95746aa9289efd40bbdd23a87d1e5dee.
* Remove dead codeBill Nottingham2008-05-231-16/+0
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/initscriptsBill Nottingham2008-05-151-0/+7
|\
| * Make resolve_dm_raid() work when your original raid was set up withPeter Jones2008-05-141-0/+7
| | | | | | | | parameters generated by an older dmraid's "dmraid -ay --test".
* | Don't unmount sysfs in halt. (#446292)Bill Nottingham2008-05-151-1/+1
|/
* Remove rhgb support.Bill Nottingham2008-05-132-24/+0
|
* do a much better check for network availabilityBill Nottingham2008-04-231-3/+1
| | | | Avoids nasty 'FAILED' messages when using NetworkManager.
* Remove $local_fs from the list of provides.Bill Nottingham2008-04-011-1/+1
| | | | | | | The concept of local filesystems on top of remote network filesystems is bizarre enough that it's almost certainly not necessary for 'system' things. Removing the $local_fs provide (making it implicitly provided, like $time) simplifies some of the dependency issues.
* don't use /etc/sysconfig/clock (#438337)Bill Nottingham2008-03-201-28/+1
|
* Umount 'ncp' filesystems as well (#437117)Bill Nottingham2008-03-121-1/+1
|
* Disable by default in favor of NetworkManager.Bill Nottingham2008-03-101-1/+1
|
* Skip network shutdown if there is a '_rnetdev' root device (part of #435358, ↵Bill Nottingham2008-03-031-1/+1
| | | | <pjones@redhat.com>)
* Various minor optimizations to speed up boot. (<arjan@infradead.org>)Bill Nottingham2008-02-261-2/+4
| | | | | | | | Notable: - separate [ "$variable" ] tests from [ -f ... ] - don't grep init scripts - cache the information from /sbin/consoletype - simplify 'confirm' handling
* use lvm, not lvm.static (#429222)Bill Nottingham2008-01-191-3/+3
|
* clean up some extraneous delays (#219816)Bill Nottingham2007-10-082-5/+11
|
* more fixes (#220087)Bill Nottingham2007-09-253-3/+3
|
* work around bash changes (#220887, modified from <nvigier@mandriva.com>)Bill Nottingham2007-09-251-1/+2
|
* add Should-Start for firewall servicesBill Nottingham2007-09-191-0/+1
|
* optimize out some excess greps (<harald@redhat.com>)Bill Nottingham2007-08-291-0/+12
|
* typoBill Nottingham2007-08-291-1/+1
|
* make __readlink as simple as possible. Seems to match the /usr/binBill Nottingham2007-08-291-18/+1
| | | | implementation (which does not normalize for full paths)
* adapt to new nut usage, conflict with older packages (#252973)Bill Nottingham2007-08-291-4/+6
|
* - added support for cryptsetup-uuids (bug #242078)Harald Hoyer2007-08-141-0/+21
|
* assorted cleanupsBill Nottingham2007-08-071-15/+7
|
* fix netconsole status()Bill Nottingham2007-08-071-9/+7
|
* avoid calling unicode_start unnecessarily often during startup/shutdown ↵Nils Philippsen2007-07-171-1/+3
| | | | which causes certain monitor/video card combos to flicker heavily (#237839)
* - netfs: check for rpcbind, not portmap (#245595)Bill Nottingham2007-06-251-1/+1
|