Package: s3ql
Version: 2.11.1+dfsg-3.1
In jessie, s3ql.mount does not send send notification to systemd even
if python3-systemd is installed.
After applying the patch bellow (taken upstream), notification are
actually sent :
diff -r -u5 a/src/s3ql/mount.py b/src/s3ql/mount.py
--- a/src/s3ql/mount.py 2016-11-04 20:30:10.763791775 +0100
+++ b/src/s3ql/mount.py 2016-11-04 20:30:56.564020273 +0100
@@ -39,11 +39,11 @@
import time
import shutil
import atexit
try:
- import systemd.daemon.notify as sd_notify
+ from systemd.daemon import notify as sd_notify
except ImportError:
sd_notify = None
log = logging.getLogger(__name__)
Regards,
Michael