From: Dave Barach Date: Wed, 28 Oct 2020 18:56:12 +0000 (-0400) Subject: build: explicitly stop vpp in vpp.preinst X-Git-Tag: v21.06-rc0~249 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F52%2F29652%2F1;p=vpp.git build: explicitly stop vpp in vpp.preinst Otherwise, "dpkg -i " hangs. This is a new behavior. Type: improvement Signed-off-by: Dave Barach Change-Id: I614e6d64b59df1753c8812fdab0f851c8181a7fe --- diff --git a/src/pkg/debian/vpp.preinst b/src/pkg/debian/vpp.preinst index d33cacfc3fa..9abfe778d9d 100644 --- a/src/pkg/debian/vpp.preinst +++ b/src/pkg/debian/vpp.preinst @@ -2,3 +2,4 @@ # Add the vpp group groupadd -f -r vpp +start-stop-daemon --stop --exec /usr/bin/vpp || true