mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
1c4f5e7d92
zfs-import-{cache,scan}.service must complete before any mounting of filesystems can occur. To simplify this dependency, create a target that is reached After (in the systemd sense) the pool is imported. Additionally, recommend that legacy zfs mounts use the option x-systemd.requires=zfs-import.target to codify this requirement. Reviewed-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Signed-off-by: Antonio Russo <antonio.e.russo@gmail.com> Closes #6764
32 lines
968 B
Makefile
32 lines
968 B
Makefile
systemdpreset_DATA = \
|
|
50-zfs.preset
|
|
|
|
systemdunit_DATA = \
|
|
zfs-zed.service \
|
|
zfs-import-cache.service \
|
|
zfs-import-scan.service \
|
|
zfs-mount.service \
|
|
zfs-share.service \
|
|
zfs-import.target \
|
|
zfs.target
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/etc/systemd/system/zfs-zed.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import-cache.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import-scan.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-mount.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-share.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import.target.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs.target.in \
|
|
$(top_srcdir)/etc/systemd/system/50-zfs.preset.in
|
|
|
|
$(systemdunit_DATA) $(systemdpreset_DATA):%:%.in
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@runstatedir\@,$(runstatedir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
distclean-local::
|
|
-$(RM) $(systemdunit_DATA) $(systemdpreset_DATA)
|