summaryrefslogtreecommitdiff
path: root/units/initrd-cleanup.service
Commit message (Collapse)AuthorAgeFilesLines
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* units: upgrade initrd check Conditions to AssertsLennart Poettering2020-07-291-1/+1
| | | | | It's a bug if an initrd unit is run on the host. Hence let's upgrade the conditions to asserts.
* units: drop full paths for utilities in $PATHZbigniew Jędrzejewski-Szmek2020-01-201-0/+20
| | | | | | | This makes things a bit simpler and the build a bit faster, because we don't have to rewrite files to do the trivial substitution. @rootbindir@ is always in our internal $PATH that we use for non-absolute paths, so there should be no functional change.
* build-sys: don't hard-code binary paths in initrd-*.serviceMichael Biebl2013-03-091-18/+0
| | | | Instead use @bindir@ for udevadm and @rootbindir@ for systemctl.
* Revert "units/initrd-*: require initrd-fs.target rather than local-fs.target"Harald Hoyer2013-03-061-2/+2
| | | | This reverts commit 7d89ce303fb59743a4392eeb3110c00f100172ca.
* units/initrd-*: require initrd-fs.target rather than local-fs.targetHarald Hoyer2013-03-041-2/+2
|
* initrd: add unit files needed for basic systemd-in-initrd supportTom Gundersen2013-03-011-0/+18
This will: * mount all configured filesystems (typically the rootfs on /sysroot) * reload the configuration to pick up anything from the mounted fs (typically /sysroot/etc/fstab) * mount any newly configured filesystems (typically /usr on /sysroot/usr, if applicable) * shut-down and clean-up any daemons running in the initramfs (typically udevd) * switch-root to /sysroot and start the real init For an example of what files should be included in an initramfs based on this see <https://mailman.archlinux.org/pipermail/arch-projects/2013-February/003628.html>. Cc: Harald Hoyer <harald.hoyer@gmail.com> Cc: Dave Reisner <d@falconindy.com>