aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Handle permission denied on reading PID file. (#595597)Bill Nottingham2010-06-091-0/+4
|
* Check NM_CONTROLLED before deciding to use NM for a connection. (#599707, ↵Bill Nottingham2010-06-041-1/+1
| | | | probably others.)
* Add functions to check shvar-style variables.Bill Nottingham2010-06-041-0/+21
|
* Always reboot on autorelabel. (#595823)Bill Nottingham2010-06-031-19/+9
| | | | | | It's not just init that could be mislabeled and cause problems; there's udev, random other command from rc.sysinit, etc. Furthermore, this avoids a problem with ending up in permissive mode.
* Remove extraneous newline.Bill Nottingham2010-05-201-1/+0
|
* Correct the fix for not clearing environment with runuser. (#203010, #564093)Bill Nottingham2010-05-191-1/+1
| | | | This changes runuser to not use a login shell. We'll see what happens.
* Fix debugging leftovers.Bill Nottingham2010-05-191-2/+1
|
* 9.03.8-1initscripts-9.03.8-1Bill Nottingham2010-05-191-1/+10
|
* Improve shutdown splash screen reliabilityRay Strode2010-05-193-14/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Right now the splash screen and rc script are racing with each other so you occasionally see a few shutdown messages before plymouth is up. This commit ensures proper synchronization between prefdm, plymouthd, and the rc script. It does this by 1) fully stopping prefdm before letting rc start 2) fully starting plymouth before letting rc start 3) if prefdm is running (e.g. runlevel 5), waiting until it is fully stopped before starting plymouthd 4) if prefdm is not running (e.g. runlevel 3), starting plymouthd right away One bit of complication in this commit is the "splash manager". It's a layer of indirection needed to handle the conditional mentioned in 3) and 4). There's no way within an upstart job file to say "start after the prefdm "stopped" event only if prefdm is not already stopped". We really need this to effectively happen, though, because if prefdm isn't in the process of stopping (because it was never started in the first place), it will never emit the stopped event and blocking for an event that never comes mean shutdown would never start. The splash manager checks if prefdm is already running and uses that information to emit an appropriate event that the plymouth-shutdown job can key of off. Note, one implication of 4) is we are showing plymouth when shutting down from runlevel 3 now. This is a change in behavior, but makes sense, since we show plymouth when starting up into runlevel 3.
* Use new lvm2 --sysinit option. Conflict with older lvm2. (#588777)Bill Nottingham2010-05-182-4/+2
|
* Behave sanely if we're not passed a device at all. (#589521, #592108)Bill Nottingham2010-05-131-0/+2
|
* Get rid of a silly error message for loopback devices.Bill Nottingham2010-05-131-1/+1
|
* export debug variables. (#589378)Bill Nottingham2010-05-131-3/+3
|
* Check for NetworkManager to be connected, not just running. (#589710, #592095)Bill Nottingham2010-05-131-1/+1
|
* rcS*.conf - check if /etc/inittab exists (#590703)Petr Lautrbach2010-05-132-2/+2
|
* Clean up some leftover VLAN code; clarify documentation.Bill Nottingham2010-05-132-3/+1
|
* use ip command for vlan instead of vconfigPetr Lautrbach2010-05-134-33/+10
|
* 9.03.7-1initscripts-9.03.7-1Bill Nottingham2010-05-051-2/+5
|
* Oops.Bill Nottingham2010-05-051-43/+0
|
* Update for new nmcli syntax.Bill Nottingham2010-05-053-3/+46
|
* 9.03.6-1initscripts-9.03.6-1Bill Nottingham2010-05-041-1/+7
|
* Fix shutdown as well as plymouth quitting.Bill Nottingham2010-05-031-0/+1
|
* Tweak manpage so it formats correctly (#586476)Bill Nottingham2010-04-271-1/+2
|
* Handle being unable to read a specified pid file. (#584575)Bill Nottingham2010-04-261-2/+8
|
* Use 'task' for stopping plymouth. (<rstrode@redhat.com>)Bill Nottingham2010-04-261-0/+2
|
* Run dhclient -6 similar to dhclient -4. (#585047)Bill Nottingham2010-04-231-1/+1
|
* 9.03.5-1initscripts-9.03.5-1Bill Nottingham2010-04-091-1/+9
|
* Redirect error messages to /dev/null to catch if nmcli is not installed. ↵Bill Nottingham2010-04-091-2/+2
| | | | (#570828, <zing@fastmail.fm>)
* Pull device from NetworkManager, if possible.Bill Nottingham2010-04-091-3/+8
| | | | Requires a fairly recent nmcli.
* Don't require dev, either.Bill Nottingham2010-04-091-1/+1
|
* Clean up some of the requirements.Bill Nottingham2010-04-091-4/+4
| | | | | | | - syslog (this isn't *required*, as the system boots without it) - mount (as it's provided by util-linux-ng) - popt (runtime library, should never have been listed) - e2fsprogs (anaconda will install the proper FS utilities for the root filesystem)
* Conflict with older NetworkManager; the support for it here requires recent ↵Bill Nottingham2010-04-091-1/+2
| | | | versions.
* Only use UUID to bring connections up/down; ensure we have a UUID by asking ↵Bill Nottingham2010-04-092-9/+9
| | | | NM for it.
* Quote 'name' when passing to get_config_by_name.Bill Nottingham2010-04-091-1/+1
|
* Quote need_config; needed when identifying configuration by NM's 'name'.Bill Nottingham2010-04-093-3/+3
|
* Fix is_nm_activeBill Nottingham2010-04-091-1/+1
| | | | Some versions of nmcli have trailing whitespace.
* When bringing devices down, disconnect the device, don't down the connection.Bill Nottingham2010-04-092-6/+7
|
* Remove quotes from uuid.Bill Nottingham2010-04-091-1/+1
|
* Use NM if it's running and we have a configuration for the device.Bill Nottingham2010-04-093-0/+22
|
* Add a function that determines the status of NetworkManager; use it.Bill Nottingham2010-04-091-0/+6
|
* Add get_config_by_name, use it.Bill Nottingham2010-04-091-0/+12
|
* Add get_config_by_device, adjust caller.Bill Nottingham2010-04-091-4/+10
|
* Change how we handle RAID arrays. (<dledford@redhat.com>)Bill Nottingham2010-04-092-2/+2
| | | | Conflict with older mdadm to make sure we're in sync.
* Fix translation mis-paste. (#575954, <pb@bieringer.de>)Bill Nottingham2010-04-091-1/+1
|
* 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
|
* l10n: Updates to Korean (ko) translationenshahar2010-04-041-121/+121
| | | | Transmitted-via: Transifex (translate.fedoraproject.org)
* l10n: Updates to Korean (ko) translationenshahar2010-04-041-832/+1173
| | | | Transmitted-via: Transifex (translate.fedoraproject.org)
* Sending translation for Spanishgguerrer2010-03-081-1118/+782
|
* The current rawhide dmraid has proper error codes.Bill Nottingham2010-02-262-1/+2
|