#1009629 live-tools: postinst generates two update-rc.d warnings

#1009629#5
Date:
2022-04-13 09:20:00 UTC
From:
To:
Live System Maintainers,

$ sudo apt install live-tools
...
Setting up live-tools (1:20190831) ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
update-rc.d: warning: start runlevel arguments (none) do not match live-tools Default-Start values (S)
...

I believe that the simple (untested) patch below
will remove these warnings.

Thank you!
Daniel Lewart
Urbana, Illinois
---
diff -ru a/debian/rules b/debian/rules
--- a/debian/rules	2020-10-23 09:08:54.000000000 -0500
+++ b/debian/rules	2022-04-13 00:00:00.000000000 -0500
@@ -10,4 +10,4 @@
 	rm -f debian/live-tools/usr/share/doc/live-tools/COPYING

 override_dh_installinit:
-	dh_installinit --no-stop-on-upgrade --no-start --update-rcd-params='start 89 0 6 .'
+	dh_installinit --no-stop-on-upgrade --no-start

###