aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d
Commit message (Collapse)AuthorAgeFilesLines
* Correct the fix for not clearing environment with runuser. (#203010, #564093)Bill Nottingham2010-04-091-1/+1
| | | | This changes runuser to not use a login shell. We'll see what happens.
* Fix mdmom pid handling for newer mdadm (#549726, <dledford@redhat.com>)Bill Nottingham2010-04-061-2/+2
|
* Only blacklist the original loopback interface. (#579816, <evgsyr@gmail.com>)Bill Nottingham2010-04-061-1/+2
|
* Pass -m to runuser, so the environment is not cleared. (#203010, #564093)Bill Nottingham2010-02-111-1/+1
| | | | | There could conceivably be consequences to this, but it matches the behavior of the non-runuser case.
* Don't quote regex argument to bash's =~.Ville Skyttä2010-01-251-1/+1
|
* Eliminate bunch of unnecessary stat calls and command invocations.Ville Skyttä2010-01-125-12/+12
|
* Get rid of uses of deprecated egrep and fgrep.Ville Skyttä2010-01-121-7/+7
|
* Fix some bashisms.Ville Skyttä2010-01-071-1/+1
|
* Simplify various string match constructs.Ville Skyttä2010-01-073-3/+3
|
* We don't echo when we *set* forwarding; there's no reason to echo when we ↵Bill Nottingham2010-01-061-7/+1
| | | | disable it either. (#552653)
* ip_always_defrag was removed in the *2.4* kernel.Bill Nottingham2010-01-061-5/+0
| | | | I think we can safely remove this code.
* Explicitly tell init to re-exec itself on halt, to avoid a busy filesystem.Bill Nottingham2009-12-031-0/+3
|
* Keep error codes limited to '1'. (#537841)Bill Nottingham2009-11-171-3/+3
|
* halt: put a wrapper around killall5 to account for retval 2 not being an errorHans de Goede2009-10-211-4/+13
| | | | This stops us from showing [ FAILED ] when there were no processes to kill.
* Wrap /sbin/killall5 to catch some return codes. (#526539)Bill Nottingham2009-10-021-2/+11
| | | | | | | killall5 now returns '2' if there are no processes to kill; we don't want to treat that as 'failure'. Patch adapted from (<hdegoede@redhat.com>).
* More random return code fixes.Bill Nottingham2009-09-293-3/+4
|
* Fix stop/start return codes (#524489).Bill Nottingham2009-09-241-0/+2
|
* Various initscript guideline fixes. (#524489)Bill Nottingham2009-09-211-3/+5
|
* Various initscript standard changes. (#524486)Bill Nottingham2009-09-211-2/+4
|
* Various cleanups to meet standards. (#524480)Bill Nottingham2009-09-211-1/+3
|
* Use halt's return code to avoid unnecessary sleeping. (#524359, ↵Bill Nottingham2009-09-211-2/+5
| | | | <hdegoede@redhat.com>)
* Don't kill mdmon on shutdown. (#524357, <hdegoede@redhat.com>)Bill Nottingham2009-09-211-2/+16
| | | | Horray for bad kernel <-> userspace interactions.
* Add a -l option to status to pass the lock file name. (#521772)Bill Nottingham2009-09-081-3/+10
|
* Don't try and save mixer settings if it's not writable. (#515771)Bill Nottingham2009-08-241-1/+1
|
* Don't call a function that doesn't actually do anything.Bill Nottingham2009-08-211-5/+0
|
* Nuke redundant declaration of actionVictor Lowther2009-07-301-11/+0
|
* Use $() instead of `` for process expansion.Bill Nottingham2009-07-305-17/+17
| | | | Adapted from <victor.lowther@gmail.com>.
* Redirect bash errors on 'unset' to /dev/null. (#482888)Bill Nottingham2009-06-181-1/+1
|
* cgexec has moved to /bin (#495715)Bill Nottingham2009-04-141-2/+2
|
* Drop smbfs support - both the kernel module and the userspace helper are ↵Bill Nottingham2009-04-021-14/+2
| | | | long gone.
* Support MD on iSCSI (this *SHOULD* be udev rules, but alas) (#480627)Bill Nottingham2009-03-111-0/+3
|
* cgroup support (<jsafrane@redhat.com>)Bill Nottingham2009-03-061-2/+17
|
* Fix various issues with dmraid handling (#485895, <hdegoede@redhat.com>)Bill Nottingham2009-03-041-30/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I've been doing a lot of work on mkinitrd's dmraid support lately some of the lessons learned there also apply to the activation of (not used for /) dmraid arrays in rc.sysinit, this will esp. help the livecd proerly activating and using dmraid sets. The patch fixes the following issues: 1) rc.sysinit (and mkinitrd used to) calls dm_resolve_name() on the output of dmraid, this is not necessary as dm_resolve_name is only needed when the name is /dev/dm-#, it is actually harmful as dm_resolve_name sometimes fails when used like this, causing us to fail to activate dmraid sets 2) rc.sysinit does not remove the partitions from the raw disks used in a raidset the initrd used to use special nash functionality to tell the kernels to forget about the partitions of the raw disks it had scanned at boot. The issue here is, say we have a mirror of sda and sdb, and that mirror has 2 partitions. Then the kernel when scanning the raw disks will find sda1,sda2,sdb1,sdb2. But we do not want anything using those, they should use the devicemapper versions as those are mirrored! I've even seen mounting by LABEL / UUID do the wrong thing by using the raw partitions instead of the raidset partitions. I've recently done a patch to dmraid adding a --rm_partitions cmdline option which makes dmraid do the ioctl which makes the kernel forget about the partitions of the rawdisk (which in turn makes udev remove the device nodes). This way we no longer need the nash magic. Part of my rc.sysinit patch is adding --rm_partitions to the dmraid invocation 3) rc.sysinit uses dmraid -p, which tells dmraid to not setup device maps for the partitions of the raidset and then kalls kpartx to setup the device maps for the partitions. This can be simplified by removing the -p argument to dmraid 4) with all these changes in place there is no longer a reason to loop, a single dmraid invocation is enough. p.s. AFAIK with this patch the last user of dm_resolve_name is gone, so that function can be removed. Better check twice though.
* Use the same arguments for kpartx that we do in rc.sysinit.Bill Nottingham2009-02-061-1/+1
| | | | Noticed when reviewing (#448919)
* Use a leading path marker when sourcing files. (#482826)Bill Nottingham2009-01-281-1/+1
| | | | bash 4 breaks the prior code.
* Don't unmount the nfsd filesystem when unmounting nfs client mounts. ↵Bill Nottingham2009-01-271-1/+1
| | | | (#481794, <sprabhu@redhat.com>)
* 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
|