mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 18:31:00 +03:00
ce4432c542
Dracut depends on the environment variable BOOTFS to be set after pool import. This dracut specific systemd ExecStartPost command should not be called for any non-dracut systems, so let's move it to a static systemd unit that. Reviewed-by: Manuel Amador (Rudd-O) <rudd-o@rudd-o.com> Reviewed-by: Matthew Thode <prometheanfire@gentoo.org> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Closes #8510
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
pkgdracutdir = $(dracutdir)/modules.d/90zfs
|
|
pkgdracut_SCRIPTS = \
|
|
export-zfs.sh \
|
|
module-setup.sh \
|
|
mount-zfs.sh \
|
|
parse-zfs.sh \
|
|
zfs-generator.sh \
|
|
zfs-load-key.sh \
|
|
zfs-needshutdown.sh \
|
|
zfs-lib.sh
|
|
|
|
pkgdracut_DATA = \
|
|
zfs-env-bootfs.service
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/contrib/dracut/90zfs/export-zfs.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/module-setup.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/mount-zfs.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/parse-zfs.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/zfs-generator.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/zfs-load-key.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/zfs-needshutdown.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/zfs-lib.sh.in \
|
|
$(top_srcdir)/contrib/dracut/90zfs/zfs-env-bootfs.service.in
|
|
|
|
$(pkgdracut_SCRIPTS) $(pkgdracut_DATA) :%:%.in
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@udevdir\@,$(udevdir),g' \
|
|
-e 's,@udevruledir\@,$(udevruledir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
-e 's,@systemdunitdir\@,$(systemdunitdir),g' \
|
|
-e 's,@mounthelperdir\@,$(mounthelperdir),g' \
|
|
$< >'$@'
|
|
|
|
distclean-local::
|
|
-$(RM) $(pkgdracut_SCRIPTS) $(pkgdracut_DATA)
|