aboutsummaryrefslogtreecommitdiffstats
path: root/systemd
Commit message (Collapse)AuthorAgeFilesLines
* readonly-root: restore selinux context after bind mount (#1029342)Václav Pavlín2013-11-121-1/+1
|
* brandbot: tool to write branding to /etc/os-release (#1009947)Lukas Nykryn2013-09-232-0/+15
|
* readonly-root: bind-mount only necessary subset of entries in rwtabVáclav Pavlín2013-09-121-13/+32
|
* create /var/log/dmesg for compatibility reasons (#854002)Lukas Nykryn2013-08-302-0/+14
|
* rename fedora-* to rhel-*Lukas Nykryn2013-07-1213-7/+7
|
* add possibility to set domainname through /etc/sysconfig/networkLukas Nykryn2013-07-112-0/+20
|
* readonly-root: rpcidmapd restart is not needed anymoreVáclav Pavlín2013-06-261-1/+1
|
* readonly-root: remount rpc_pipefs if readonly-root is usedVáclav Pavlín2013-05-281-0/+4
|
* add systemd-random-seed.service to Before= in fedora-readonly.serviceVáclav Pavlín2013-03-141-1/+1
| | | | (#888615)
* remount-rootfs.service got renamed to systemd-remount-fs.serviceHarald Hoyer2013-03-122-2/+2
|
* Allow passing -F from /.autorelabel to fixfiles when relabeling systemVáclav Pavlín2013-01-281-1/+2
| | | | (#904279)
* Migrate even further away from /etc/sysconfig/network for hostname, and ↵Bill Nottingham2012-12-101-4/+2
| | | | /etc/sysconfig/i18n.
* Drop fedora-storage-init; conflict with older lvm & dmraid so we get the ↵Bill Nottingham2012-10-314-91/+0
| | | | required versions that allow us to do so. (<prajnoha@redhat.com>)
* Don't pass -F to fixfiles (#863662, <dwalsh@redhat.com>)Bill Nottingham2012-10-081-1/+1
|
* Drop reference to systemd-udev.service.Bill Nottingham2012-07-091-1/+1
| | | | | 1) udev-settle.service brings it in anyway 2) it changed names again
* Fix unit names.initscripts-9.38-1Bill Nottingham2012-06-291-2/+2
|
* Only run fedora-storage-init if we have the tools that it invokes.Bill Nottingham2012-06-192-0/+6
|
* Check that root is r/w before starting fedora-import-state.Bill Nottingham2012-06-191-0/+1
|
* Move fedora-readonly to Before=local-fs.targetBill Nottingham2012-05-071-1/+1
|
* Make sure fedora-readonly runs before random seed loading/saving. (#808907)Bill Nottingham2012-04-251-1/+1
|
* add fedora-import-state.serviceWill Woods2012-03-082-0/+27
| | | | | | | | This service imports the contents of /run/initramfs/state into the root filesystem, where the root filesystem is writeable. This allows dracut to hand the ifcfg file and dhclient lease over to NetworkManager on network-booted Live images.
* Use /run/initramfs instead of /dev/.initramfsWill Woods2012-03-081-2/+2
| | | | | | | | | | | Current dracut saves state to /run/initramfs, since /run is standard now. This patch makes rc.sysinit and fedora-readonly check for files in /run/initramfs/rwtab and /run/initramfs/state (which is where dracut writes them). It also makes ifup-eth look for lease files in /run/initramfs.
* Drop StandardInput=tty (#785662)Bill Nottingham2012-01-301-1/+0
|
* Handle dmraid sets with spaces (#728795, <lnykryn@redhat.com>)Bill Nottingham2012-01-061-0/+3
|
* Don't exit with an error if SEinux isn't active. (#768628)Bill Nottingham2011-12-191-3/+9
|
* Don't bother with stdin/stdout/stderr for rmmod/modprobe of scsi_wait_scan. ↵Bill Nottingham2011-11-111-0/+3
| | | | (#735867)
* selinuxfs moved, adjust code. (#733759)Bill Nottingham2011-08-302-4/+4
|
* Call multipath and kpartx with -u. (#733437)Bill Nottingham2011-08-251-3/+3
|
* plymouth lives in /bin. (#702814)Bill Nottingham2011-08-152-3/+3
|
* Drop fedora-autoswap; it's somewhat dangerous, and better done via a ↵Bill Nottingham2011-08-092-30/+0
| | | | udev/systemd combination anyway.
* Remove fedora-sysinit-hack/fedora-sysinit-unhack; they're not needed with ↵Bill Nottingham2011-07-252-21/+0
| | | | /var/lock on tmpfs.
* Make sure to enable fedora-storage-init-late.service, and have it after the ↵Bill Nottingham2011-04-271-1/+1
| | | | non-late version. (#699918)
* Support overriding hostname via /etc/hostname.Bill Nottingham2011-04-181-0/+1
|
* Add a storage setup after cryptsetup.target. (#692198)Bill Nottingham2011-04-061-0/+13
| | | | Due to cryptsetup being parallel with this initially, we need this to support LVM/MD on LUKS.
* separate "touch /.autorelabel" to a new unitMichal Schmidt2011-04-042-4/+15
| | | | | | | | | | | | | | | | | | | Writing /.autorelabel from fedora-autorelabel does not work because the script is executed only if relabel was already requested. Create a new unit fedora-autorelabel-mark.service which will be responsible for creating /.autorelabel if SELinux is disabled. The unit takes advantage of the new "ConditionSecurity=" support in systemd. The old script checked for a read-only filesystem first. The new unit does not do that. If / is read-only, touch will simply fail. This should not be considered as a failure of the unit, so "-" is used in ExecStart. There have been arguments on systemd-devel that the root directory should not be abused for flag files like /.autorelabel. It has a long tradition in Fedora though (since 2005). Maybe we can change it eventually, but let's keep it where it is for now.
* simplify the check for plymouth in fedora-autorelabelMichal Schmidt2011-04-041-4/+1
| | | | | The result of the check is needed only once, so there's no advantage in caching it in a variable.
* let systemd check the conditions for fedora-autorelabelMichal Schmidt2011-04-042-18/+4
| | | | | | | The service unit file already checks whether /.autorelabel or the "autorelabel" parameter are present. No need to recheck in the script. Using the new "ConditionSecurity=" feature systemd can also check whether SELinux is enabled.
* Fix conditions so that they operate as OR, not AND. (#684125)Bill Nottingham2011-03-112-4/+4
|
* initscripts: execute fedora-sysinit-unhack after sysinit.targetAndrey Borzenkov2011-03-101-1/+2
| | | | | | | | | Currently both are started early during boot and in the best case are no-op, in the worst - hack is executed after unhack and leaves /dev/.in_sysinit hanging around forever. Make sure unhack is executed after hack and after sysinit.target as name suggests. Signed-off-by: Andrey Borzenkov <arvidjaar@gmail.com>
* Avoid some unnecessary stat calls.Ville Skyttä2011-03-011-1/+1
|
* Use proper keyword (#657974)Bill Nottingham2010-11-302-2/+2
|
* Remain after local-fs.target.Bill Nottingham2010-11-221-1/+1
|
* fedora-autoswap: order before swap.target like all other swapsLennart Poettering2010-11-221-3/+2
|
* fedora-storage: drop reference to emergency, weaken dependenciesLennart Poettering2010-11-212-4/+4
|
* fedora-autorelabel: drop disable_selinux() since it is unusedLennart Poettering2010-11-211-7/+0
|
* autorelabel: use systemd internal reboot logic, which is more robust and ↵Lennart Poettering2010-11-211-5/+1
| | | | includes automatic unmounting
* systemd: simplify autorelabel ordering and add conditional suppressionLennart Poettering2010-11-211-2/+4
|
* loadmodules: start in parallel to systemd-modules-load.serviceLennart Poettering2010-11-211-4/+2
| | | | | | This changes After/Before to be identical to systemd-modules-load.service.in. This causes this unit to be run earlier and in parallel to udev and the rest of the module loading.
* systemd: run fedora-loadmodules only if there's something configuredLennart Poettering2010-11-211-1/+2
|
* sysinit.service is no longer necessaryLennart Poettering2010-11-211-10/+0
|