aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rc.sysinit
Commit message (Collapse)AuthorAgeFilesLines
* Do not try and activate ISW raidsets, unless noiswmd is passed. (#524355, ↵Bill Nottingham2009-09-211-3/+5
| | | | <hdegoede@redhat.com>)
* Support rwtab and state passed from dracut initrd.Warren Togami2009-09-021-3/+3
|
* Restore context of recreated files. (#519748)Bill Nottingham2009-08-271-0/+1
|
* Fix some whitespace annoyances.Bill Nottingham2009-08-201-44/+44
|
* /selinux is not configurable. Don't pretend it is (fixes #518164)Bill Nottingham2009-08-201-10/+9
|
* Remove call to pam_console_apply.Bill Nottingham2009-08-041-3/+0
| | | | | 1) pam_console is doing it wrong. Use udev's acl support. 2) exactly what are we resetting for dynamically created udev devices?
* Use resolv.conf from dracut netboot before setting hostname. (#514801, ↵Bill Nottingham2009-07-301-0/+3
| | | | <wtogami@redhat.com>)
* Use $() instead of `` for process expansion.Bill Nottingham2009-07-301-10/+10
| | | | Adapted from <victor.lowther@gmail.com>.
* Fix dmraid partition naming (#501476, <hdegoede@redhat.com>)Bill Nottingham2009-05-261-1/+6
|
* Silence errors.Bill Nottingham2009-04-021-1/+1
|
* Fix syntax error.initscripts-8.92-1Bill Nottingham2009-04-021-1/+1
|
* Add a disk scan synchronization point with scsi_wait_scan. (#481470)Bill Nottingham2009-04-021-0/+3
| | | | | | We need to wait for scans to finish for mdadm & LVM to work (and heck, even fsck). Note that this won't necessarily fix USB, as it has an asyncrhonous delay even before it starts scanning.
* Revert mdadm changes.Bill Nottingham2009-03-311-2/+2
| | | | | This reverts commit 67e59d33e57d4c8feba356320bead2451cbb921b. This reverts commit fcc54b6f014c63b64e37b0d63d871f344385da84.
* Handle multiple IP addresses without choking in the stateless code. (#443945)Bill Nottingham2009-03-231-2/+3
| | | | | If you have multiple addresses that resolve to different things, it will still be unpredictable. In which case... set your hostname yourself.
* Catch the right return code from asking for the password. (#483269, ↵Bill Nottingham2009-03-201-1/+3
| | | | <vladis.kletnieks@vt.edu>)
* Fix raid auto-assembly (with corresponding mdadm changes). (#488038)Bill Nottingham2009-03-181-2/+2
|
* Fix various issues with dmraid handling (#485895, <hdegoede@redhat.com>)Bill Nottingham2009-03-041-8/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Fix typo. (#487926)Bill Nottingham2009-03-031-1/+1
|
* Fix switching from targeted to MLS policy (#479054, <dwalsh@redhat.com>)Bill Nottingham2009-01-061-1/+1
|
* Nothing uses $(uname -r) or $(uname -m) any more in rc.sysinit - don't set them.Bill Nottingham2009-01-051-2/+0
|
* Remove /.suspended as well on boot (#270861)Bill Nottingham2008-12-161-2/+3
|
* blkid has a -l option to pick a single device. Use it. (#470027)Bill Nottingham2008-11-051-4/+4
| | | | | | Notably, it prioritizes RAID/DM/LVM, etc. over the underlying block devices. Given that initial RAID0 members share a UUID with the RAID device itself, we need that.
* Properly handle multiple DM devices when checking for slaves. (#462371, ↵Bill Nottingham2008-10-311-3/+7
| | | | | | | <wwoods@redhat.com>) Also, do some manipulation of the device name to (hopefully) handle things like /dev/cciss/c0d0p1, and other devices with nested /dev hierarchies.
* Don't check that the device exists.Bill Nottingham2008-10-171-2/+0
| | | | Checking whether or not it's a block device already covers that.
* Don't set up a device that's already a device-mapper slave.Bill Nottingham2008-10-171-0/+4
| | | | It's possible the initrd set the device up under a different LUKS name.
* Explicitly run mdadm on boot to catch degraded arrays. (<dledford@redhat.com>)Bill Nottingham2008-10-141-0/+3
|
* Revert "Explicitly load dm-crypt until we can fix cryptsetup."Bill Nottingham2008-09-301-1/+0
| | | | This reverts commit 2c55e1c2d7f4ee82aa0af9bfebfee889236c56bf.
* Merge branch 'master' of ssh://git.fedorahosted.org/git/initscriptsBill Nottingham2008-09-301-0/+1
|\
| * Explicitly load dm-crypt until we can fix cryptsetup.Bill Nottingham2008-09-301-0/+1
| | | | | | | | cryptsetup should do this, by all rights. But it does not.
* | Explicitly load dm-mod.Bill Nottingham2008-09-301-0/+5
|/ | | | | | | We do need to explicitly load dm-mod for older kernels, because the various tools won't necessarily do it. *sigh* Reverts a chunk of 2285e2f27e1f9dce216a8b8791bd4f4237bdff80.
* Remove hardcoded device-mapper goo.Bill Nottingham2008-09-181-12/+0
| | | | | 1) Loading dm-mirror, or dm-crypt, or whatever, will load it anyway. 2) We have udev. It creates device nodes. Why are we doing it by hand?
* https://bugzilla.redhat.com/show_bug.cgi?id=433702Harald Hoyer2008-09-161-12/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Plymouth updates. (#460702, <rstrode@redhat.com>)Bill Nottingham2008-09-101-9/+21
|
* Use 0.0.0.0/0, not 0/0. (#460580)Bill Nottingham2008-09-031-1/+1
| | | | Updated iproute doesn't like the old syntax.
* Don't use -L. (#458652, #458504)Bill Nottingham2008-08-221-1/+1
|
* Properly hide the plymouth splash if needed.Bill Nottingham2008-07-281-8/+10
| | | | Also, remove some old rhgb code.
* remove references to static dmraid/multipath binaries (#453987)Bill Nottingham2008-07-031-5/+5
|
* Remove commented-out codeBill Nottingham2008-06-201-3/+0
|
* Fix /dev/pts mountinitscripts-8.78-1Bill Nottingham2008-06-201-0/+3
|
* Don't export GRAPHICAL - plymouth is for all modes.Bill Nottingham2008-06-191-18/+0
| | | | Don't try to start rhgb.
* Revert "Remove rhgb support."Bill Nottingham2008-06-191-6/+41
| | | | This reverts commit c722b0ee95746aa9289efd40bbdd23a87d1e5dee.
* Add code to set MALLOC_CHECK_ and MALLOC_PERTURB_ .Peter Jones2008-06-171-0/+6
| | | | Add mcheck to rc.sysinit.
* Fix typo, and don't restorecon on swap, etc. partitions (#448886)Bill Nottingham2008-05-291-1/+1
|
* Silence extraneous error message.Bill Nottingham2008-05-231-1/+1
|
* Don't try to startup crypto if we can't find the device, or if it isn't there.Bill Nottingham2008-05-231-0/+2
|
* Don't echo crypto stuff unless we're actually *doing* somethingBill Nottingham2008-05-231-14/+5
|
* Remove rhgb support.Bill Nottingham2008-05-131-42/+1
|
* properly handle symlinks, socketsinitscripts-8.70-1Bill Nottingham2008-04-151-1/+1
|
* find is now in /bin. Use it. (#192991, #244941, #432818, #442178, #239914)Bill Nottingham2008-04-151-19/+3
|
* Handle encrpyted LVs. (#441728)Bill Nottingham2008-04-091-0/+7
| | | | This so needs to die.