diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-11-27 12:15:04 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-11-27 12:22:55 +0100 |
commit | 55fbcd419d4291d8234ec10577436c5c30dbff61 (patch) | |
tree | 0c26ffd217f11d591728f67aafc301048fcd73f3 /ubuntu | |
parent | 80ece3509cb91ebac8702d11bfd717c2e3637845 (diff) | |
download | tde-packaging-55fbcd419d4291d8234ec10577436c5c30dbff61.tar.gz tde-packaging-55fbcd419d4291d8234ec10577436c5c30dbff61.zip |
DEB tdebase: Prevent unwanted restarting TDM service during upgrade.
This made it possible to add #DEBHELPER# back to TDM prerm script.
This resolves issue TDE/tdebase#409.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu')
-rwxr-xr-x | ubuntu/_base/core/tdebase/debian/rules | 3 | ||||
-rw-r--r-- | ubuntu/_base/core/tdebase/debian/tdm-trinity.prerm | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ubuntu/_base/core/tdebase/debian/rules b/ubuntu/_base/core/tdebase/debian/rules index df3327542..cbfa1c395 100755 --- a/ubuntu/_base/core/tdebase/debian/rules +++ b/ubuntu/_base/core/tdebase/debian/rules @@ -74,6 +74,9 @@ DEB_FIXPERMS_EXCLUDE := \ DEB_DH_STRIP_ARGS := --dbg-package=tdebase-trinity-dbg +DEB_DH_INSTALLINIT_ARGS := --no-start --no-stop-on-upgrade --no-restart-after-upgrade +DEB_DH_SYSTEMD_START_ARGS := --no-start --no-stop-on-upgrade --no-restart-after-upgrade + DOC_HTML_PRUNE := ksplashml kcontrol khelpcenter tdesu knetattach tdeioslave kxkb tdedebugdialog kdcop PACKAGES_WITH_LIBS := kate-trinity kcontrol-trinity tdebase-trinity-bin kicker-trinity konqueror-trinity ksplash-trinity \ diff --git a/ubuntu/_base/core/tdebase/debian/tdm-trinity.prerm b/ubuntu/_base/core/tdebase/debian/tdm-trinity.prerm index 23de3a247..d51bcd8dc 100644 --- a/ubuntu/_base/core/tdebase/debian/tdm-trinity.prerm +++ b/ubuntu/_base/core/tdebase/debian/tdm-trinity.prerm @@ -172,4 +172,6 @@ if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then fi fi +#DEBHELPER# + exit 0 |