mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
11a7043324
This commit adds a systemd unit file for zed.service and integrates
it into the zfs.target from commit 881f45c
.
Signed-off-by: Chris Dunlap <cdunlap@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #2108
Issue #2
36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
systemdpreset_DATA = \
|
|
$(top_srcdir)/etc/systemd/system/50-zfs.preset
|
|
systemdunit_DATA = \
|
|
$(top_srcdir)/etc/systemd/system/zed.service \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import-cache.service \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import-scan.service \
|
|
$(top_srcdir)/etc/systemd/system/zfs-mount.service \
|
|
$(top_srcdir)/etc/systemd/system/zfs-share.service \
|
|
$(top_srcdir)/etc/systemd/system/zfs.target
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/etc/systemd/system/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.target.in \
|
|
$(top_srcdir)/etc/systemd/system/50-zfs.preset.in
|
|
|
|
$(systemdunit_DATA):
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@runstatedir\@,$(runstatedir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
'$@.in' >'$@'
|
|
|
|
$(systemdpreset_DATA):
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@runstatedir\@,$(runstatedir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
'$@.in' >'$@'
|
|
|
|
distclean-local::
|
|
-$(RM) $(systemdunit_DATA) $(systemdpreset_DATA)
|