28f635be8c
based on Debian's packaging work, but simplified: - no DKMS - no dracut - no udebs and remove old patches which were based on top of Debian's packaging. Reviewed-by: Stoiko Ivanov <s.ivanov@proxmox.com> Tested-by: Stoiko Ivanov <s.ivanov@proxmox.com> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
25 lines
839 B
Diff
25 lines
839 B
Diff
From: =?utf-8?q?Fabian_Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
|
Date: Mon, 6 Feb 2017 12:04:35 +0100
|
|
Subject: Fix the path to the zed binary on the systemd unit.
|
|
|
|
We install zed into /usr/sbin manually meanwhile the upstream default is
|
|
installing it into /sbin. Ubuntu packages also install zed to /usr/sbin, but
|
|
they ship their own zfs-zed unit.
|
|
---
|
|
etc/systemd/system/zfs-zed.service.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/etc/systemd/system/zfs-zed.service.in b/etc/systemd/system/zfs-zed.service.in
|
|
index e3dec3d..0b85f16 100644
|
|
--- a/etc/systemd/system/zfs-zed.service.in
|
|
+++ b/etc/systemd/system/zfs-zed.service.in
|
|
@@ -5,7 +5,7 @@ After=zfs-import-cache.service
|
|
After=zfs-import-scan.service
|
|
|
|
[Service]
|
|
-ExecStart=@sbindir@/zed -F
|
|
+ExecStart=/usr/sbin/zed -F
|
|
Restart=on-abort
|
|
|
|
[Install]
|