[neon/3rdparty/sddm/Neon/unstable] debian: expand -r

Harald Sitter null at kde.org
Fri Mar 12 12:19:22 GMT 2021


Git commit 89174022fdda2bfcc795dc44562f3d085281db88 by Harald Sitter.
Committed on 12/03/2021 at 12:18.
Pushed by jriddell into branch 'Neon/unstable'.

expand -r

there is a peculiar bug somewhere that causes -r to not actually behave
the way the manpage says. it's documented as

       -r, --no-stop-on-upgrade, --no-restart-on-upgrade
           Do not stop service on upgrade.

but in reality somehow this ends up as restart-on-upgrade=1 still.
expanding the -r seems to produce the correct result.

we really need to upgrade our debhelper

M  +1    -1    debian/rules

https://invent.kde.org/neon/3rdparty/sddm/commit/89174022fdda2bfcc795dc44562f3d085281db88

diff --git a/debian/rules b/debian/rules
index d712d6e..11e72c3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -24,7 +24,7 @@ override_dh_auto_configure:
 	dh_auto_configure -- ${SDDM_CMAKE_ARGS}
 
 override_dh_installsystemd:
-	dh_installsystemd -psddm --no-start -r sddm.service
+	dh_installsystemd -psddm --no-start --no-stop-on-upgrade --no-restart-on-upgrade sddm.service
 
 override_dh_installinit:
 	dh_installinit --noscripts


More information about the Neon-commits mailing list