porn()pole
Commodore
- Registriert
- Mai 2002
- Beiträge
- 5.062
Hola Jungs,
es geht um einen bekannten Bug in der Installationsroutine von ZoL unter Debian (in meinem Fall Buster testing):
bugs.debian.org/bug=915831#67
Die dort skizzierte Lösung lautet:
Kann mir das mal bitte jemand übersetzen? Was soll ich mit dem Code machen? Offenbar eines der Scripte damit füttern, aber das übersteigt meine Fähigkeiten und meine Erfahrung. Konnte bisher keine "zugänglichere" Lösung hierfür ergoogeln ...
es geht um einen bekannten Bug in der Installationsroutine von ZoL unter Debian (in meinem Fall Buster testing):
bugs.debian.org/bug=915831#67
Die dort skizzierte Lösung lautet:
Code:
You have a circular dependency and that’s why it is failing. You have zfs-zed set to depend on zfsutils-linux, but there is a hard dependency in the zfs-share init file on zfs-zed.
There is no need for zed to be running before sharing is started, however it does provide helpful status logging. It is not necessarily an upstream bug, because debian decided to split zed out as it’s own package and it’s debian’s tools that are having trouble with the circular dependency caused. It is safe to remove it from Required-Start, as shown by the systemd files not requiring zed to be started first.
Here is the fix, or you can move zfs-share to zfs-zed for some reason:
--- zfs-share.orig 2019-01-04 11:26:09.076322596 -0500
+++ zfs-share 2019-01-04 11:26:32.643426954 -0500
@@ -9,8 +9,8 @@
#
### BEGIN INIT INFO
# Provides: zfs-share
-# Required-Start: $local_fs $network $remote_fs zfs-mount zfs-zed
-# Required-Stop: $local_fs $network $remote_fs zfs-mount zfs-zed
+# Required-Start: $local_fs $network $remote_fs zfs-mount
+# Required-Stop: $local_fs $network $remote_fs zfs-mount
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Should-Start: iscsi iscsitarget istgt scst nfs-kernel-server samba samba4 zfs-mount zfs-zed
Kann mir das mal bitte jemand übersetzen? Was soll ich mit dem Code machen? Offenbar eines der Scripte damit füttern, aber das übersteigt meine Fähigkeiten und meine Erfahrung. Konnte bisher keine "zugänglichere" Lösung hierfür ergoogeln ...