diff -pruN 1:3.6.0-7/debian/changelog 1:3.6.0-7ubuntu1/debian/changelog
--- 1:3.6.0-7/debian/changelog	2021-01-30 06:05:25.000000000 +0000
+++ 1:3.6.0-7ubuntu1/debian/changelog	2022-03-31 21:07:17.000000000 +0000
@@ -1,3 +1,22 @@
+lm-sensors (1:3.6.0-7ubuntu1) jammy; urgency=medium
+
+  * d/fancontrol-systemd-sleep: only restart fancontrol if it was active
+    before (LP: #1967432)
+
+ -- Andreas Hasenack <andreas@canonical.com>  Thu, 31 Mar 2022 18:07:17 -0300
+
+lm-sensors (1:3.6.0-7build2) jammy; urgency=high
+
+  * No change rebuild for ppc64el baseline bump.
+
+ -- Julian Andres Klode <juliank@ubuntu.com>  Thu, 24 Mar 2022 17:16:09 +0100
+
+lm-sensors (1:3.6.0-7build1) impish; urgency=medium
+
+  * No-change rebuild to build packages with zstd compression.
+
+ -- Matthias Klose <doko@ubuntu.com>  Thu, 07 Oct 2021 12:20:14 +0200
+
 lm-sensors (1:3.6.0-7) unstable; urgency=medium
 
   * Switch libsensors4-dev to architecture: any.  Closes: #981274.
diff -pruN 1:3.6.0-7/debian/control 1:3.6.0-7ubuntu1/debian/control
--- 1:3.6.0-7/debian/control	2021-01-30 06:05:20.000000000 +0000
+++ 1:3.6.0-7ubuntu1/debian/control	2022-03-31 21:07:17.000000000 +0000
@@ -4,7 +4,8 @@ Priority: optional
 Build-Depends: debhelper-compat (= 13), bison, flex
 Rules-Requires-Root: no
 Standards-Version: 4.5.1
-Maintainer: Aurelien Jarno <aurel32@debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Aurelien Jarno <aurel32@debian.org>
 Homepage: https://hwmon.wiki.kernel.org/lm_sensors
 
 Package: lm-sensors
diff -pruN 1:3.6.0-7/debian/fancontrol-systemd-sleep 1:3.6.0-7ubuntu1/debian/fancontrol-systemd-sleep
--- 1:3.6.0-7/debian/fancontrol-systemd-sleep	2021-01-24 23:28:48.000000000 +0000
+++ 1:3.6.0-7ubuntu1/debian/fancontrol-systemd-sleep	2022-03-31 21:07:17.000000000 +0000
@@ -2,7 +2,9 @@
 
 case "$1" in
   post)
-    /bin/systemctl restart fancontrol.service
+    if /bin/systemctl --quiet is-active fancontrol.service; then
+      /bin/systemctl restart fancontrol.service
+    fi
     exit 0
     ;;
 esac
