Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fedora-loadmodules: we don't have readahead anymore | Lukas Nykryn | 2015-11-09 | 1 | -1/+0 |
| | |||||
* | fedora-import-state.service: run a little bit later | Lukas Nykryn | 2015-01-13 | 1 | -2/+2 |
| | |||||
* | fedora-readonly: Updates for systemd random-seed handling | Colin Guthrie | 2015-01-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since: commit ef5bfcf668e6029faa78534dfeb2591df854cdef Author: Lennart Poettering <lennart@poettering.net> Date: Tue Sep 17 17:28:35 2013 -0500 backlight,random-seed: move state files into /var/lib/systemd Let's not scatter (private) files in /var around, let's place them all in /var/lib/systemd and below. the location for the random-seed file has changed. Since: commit c35b956d34bbb8bb208e49e45de2c103ca11911c Author: Lennart Poettering <lennart@poettering.net> Date: Wed May 15 22:38:51 2013 +0200 units: rework systemd-random-seed-{load,save}.service to be a single service That way ordering it with MountsRequiredFor= works properly, as this no longer results in mount units start requests to be added to the shutdown transaction that conflict with stop requests for the same unit. the service has just been called systemd-random-seed.service | ||||
* | remove fedora-configure | Lukas Nykryn | 2014-04-07 | 1 | -15/+0 |
| | |||||
* | fedora-domainname: DefaultDependencies=no | Lukas Nykryn | 2014-03-03 | 1 | -0/+2 |
| | |||||
* | add possibility to set domainname through /etc/sysconfig/network | Lukas Nykryn | 2013-07-11 | 1 | -0/+11 |
| | |||||
* | add systemd-random-seed.service to Before= in fedora-readonly.service | Václav Pavlín | 2013-03-14 | 1 | -1/+1 |
| | | | | (#888615) | ||||
* | remount-rootfs.service got renamed to systemd-remount-fs.service | Harald Hoyer | 2013-03-12 | 2 | -2/+2 |
| | |||||
* | Drop fedora-storage-init; conflict with older lvm & dmraid so we get the ↵ | Bill Nottingham | 2012-10-31 | 3 | -50/+0 |
| | | | | required versions that allow us to do so. (<prajnoha@redhat.com>) | ||||
* | Drop reference to systemd-udev.service. | Bill Nottingham | 2012-07-09 | 1 | -1/+1 |
| | | | | | 1) udev-settle.service brings it in anyway 2) it changed names again | ||||
* | Fix unit names.initscripts-9.38-1 | Bill Nottingham | 2012-06-29 | 1 | -2/+2 |
| | |||||
* | Only run fedora-storage-init if we have the tools that it invokes. | Bill Nottingham | 2012-06-19 | 2 | -0/+6 |
| | |||||
* | Check that root is r/w before starting fedora-import-state. | Bill Nottingham | 2012-06-19 | 1 | -0/+1 |
| | |||||
* | Move fedora-readonly to Before=local-fs.target | Bill Nottingham | 2012-05-07 | 1 | -1/+1 |
| | |||||
* | Make sure fedora-readonly runs before random seed loading/saving. (#808907) | Bill Nottingham | 2012-04-25 | 1 | -1/+1 |
| | |||||
* | add fedora-import-state.service | Will Woods | 2012-03-08 | 1 | -0/+13 |
| | | | | | | | | 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. | ||||
* | Drop StandardInput=tty (#785662) | Bill Nottingham | 2012-01-30 | 1 | -1/+0 |
| | |||||
* | Don't bother with stdin/stdout/stderr for rmmod/modprobe of scsi_wait_scan. ↵ | Bill Nottingham | 2011-11-11 | 1 | -0/+3 |
| | | | | (#735867) | ||||
* | Drop fedora-autoswap; it's somewhat dangerous, and better done via a ↵ | Bill Nottingham | 2011-08-09 | 1 | -12/+0 |
| | | | | udev/systemd combination anyway. | ||||
* | Remove fedora-sysinit-hack/fedora-sysinit-unhack; they're not needed with ↵ | Bill Nottingham | 2011-07-25 | 2 | -21/+0 |
| | | | | /var/lock on tmpfs. | ||||
* | Make sure to enable fedora-storage-init-late.service, and have it after the ↵ | Bill Nottingham | 2011-04-27 | 1 | -1/+1 |
| | | | | non-late version. (#699918) | ||||
* | Add a storage setup after cryptsetup.target. (#692198) | Bill Nottingham | 2011-04-06 | 1 | -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 unit | Michal Schmidt | 2011-04-04 | 1 | -0/+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. | ||||
* | let systemd check the conditions for fedora-autorelabel | Michal Schmidt | 2011-04-04 | 1 | -0/+1 |
| | | | | | | | 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 Nottingham | 2011-03-11 | 2 | -4/+4 |
| | |||||
* | initscripts: execute fedora-sysinit-unhack after sysinit.target | Andrey Borzenkov | 2011-03-10 | 1 | -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> | ||||
* | Use proper keyword (#657974) | Bill Nottingham | 2010-11-30 | 2 | -2/+2 |
| | |||||
* | Remain after local-fs.target. | Bill Nottingham | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | fedora-autoswap: order before swap.target like all other swaps | Lennart Poettering | 2010-11-22 | 1 | -3/+2 |
| | |||||
* | fedora-storage: drop reference to emergency, weaken dependencies | Lennart Poettering | 2010-11-21 | 2 | -4/+4 |
| | |||||
* | systemd: simplify autorelabel ordering and add conditional suppression | Lennart Poettering | 2010-11-21 | 1 | -2/+4 |
| | |||||
* | loadmodules: start in parallel to systemd-modules-load.service | Lennart Poettering | 2010-11-21 | 1 | -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 configured | Lennart Poettering | 2010-11-21 | 1 | -1/+2 |
| | |||||
* | sysinit.service is no longer necessary | Lennart Poettering | 2010-11-21 | 1 | -10/+0 |
| | |||||
* | Fix path (#654214) | Bill Nottingham | 2010-11-17 | 1 | -1/+1 |
| | |||||
* | Don't use our crypto init ; systemd handles this. | Bill Nottingham | 2010-11-16 | 5 | -49/+4 |
| | |||||
* | Don't conflict with multi-user.target. | Bill Nottingham | 2010-10-29 | 1 | -1/+1 |
| | |||||
* | Use systemd versions of these services. | Bill Nottingham | 2010-10-28 | 4 | -86/+0 |
| | |||||
* | Simplify some things with ConditionPathExists. | Bill Nottingham | 2010-10-28 | 4 | -0/+5 |
| | |||||
* | Don't ship our own halt service; systemd handles this natively. | Bill Nottingham | 2010-10-26 | 3 | -57/+0 |
| | | | | We will need to add a halt.local service. | ||||
* | Add autorelabel service. | Bill Nottingham | 2010-10-26 | 1 | -0/+14 |
| | |||||
* | Drop fedora-mountall, fedora-cleanup. Adjust other services accordingly. | Bill Nottingham | 2010-10-26 | 4 | -32/+4 |
| | | | | systemd can do mount & fsck & quota, etc. now. | ||||
* | Use systemd's support for normal swapon; only handle autoswap here.initscripts-9.21.systemd-1 | Bill Nottingham | 2010-10-15 | 1 | -2/+2 |
| | |||||
* | Don't have sysinit be after local-fs, that way lie loops. | Bill Nottingham | 2010-10-15 | 2 | -5/+2 |
| | | | | Assume https://bugs.freedesktop.org/show_bug.cgi?id=30913 will be fixed in systemd. | ||||
* | Adjust for current syntax. | Bill Nottingham | 2010-10-15 | 1 | -1/+1 |
| | |||||
* | Add a basic sysint service that is After: local-fs so that sockets still work. | Bill Nottingham | 2010-10-15 | 1 | -0/+13 |
| | | | | This is a workaround for https://bugs.freedesktop.org/show_bug.cgi?id=30913 | ||||
* | Add split-out bits of rc.sysinit and associated service files. Remove ↵ | Bill Nottingham | 2010-10-15 | 15 | -20/+173 |
| | | | | | | sysinit.service. Based on work by Harald Hoyer (<harald@redhat.com>) sysinit-hack/unhack will be removed once the net hotplug stuff is fixed to not require this. | ||||
* | Reorganize the systemd bits as we'll have scripts to put in /lib/systemd. | Bill Nottingham | 2010-10-14 | 8 | -0/+162 |