From dc1c790bb108eef8b7c984ce6729dcb05d7a68b7 Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Tue, 22 Mar 2011 16:44:31 -0400 Subject: [PATCH] PR 12101 stap-server should use proper cert passwords Regenerate the certificate database if it uses the old password file before attempting to sign the uprobes module. --- runtime/uprobes/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/uprobes/Makefile b/runtime/uprobes/Makefile index 523b40e5a..98b72f26a 100644 --- a/runtime/uprobes/Makefile +++ b/runtime/uprobes/Makefile @@ -27,7 +27,7 @@ default: stap_dir=~/.systemtap; \ fi; \ certfile=$$stap_dir/ssl/server/stap.cert; \ - if ! test -f $$certfile; then \ + if test ! -f $$certfile -o -f $$stap_dir/ssl/server/pw; then \ $(LIBEXECDIR)/stap-gen-cert > /dev/null; \ fi; \ if test `id -u` = 0; then \ -- 2.43.5