From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Gibson To: passt-dev@passt.top Subject: [PATCH 08/15] Clean up passt.pid file Date: Wed, 06 Jul 2022 17:29:02 +1000 Message-ID: <20220706072909.596805-9-david@gibson.dropbear.id.au> In-Reply-To: <20220706072909.596805-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6542261778324599687==" --===============6542261778324599687== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit If the tests are interrupted at the right point a passt.pid file can be left over. Clean it up with "make clean" and add it to .gitignore so it doesn't get accidentally committed. Signed-off-by: David Gibson --- .gitignore | 1 + Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 89d9919..4b86fff 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /qrap /pasta.1 /seccomp.h +/passt.pid diff --git a/Makefile b/Makefile index c441af3..0077fc9 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,8 @@ valgrind: all .PHONY: clean clean: $(RM) $(BIN) *.o seccomp.h pasta.1 \ - passt.tar passt.tar.gz *.deb *.rpm + passt.tar passt.tar.gz *.deb *.rpm \ + passt.pid install: $(BIN) $(MANPAGES) mkdir -p $(DESTDIR)$(prefix)/bin $(DESTDIR)$(prefix)/share/man/man1 -- 2.36.1 --===============6542261778324599687==--