Sfoglia il codice sorgente

Do not spam stdout when checking for running daemons

Alois Mahdal 10 anni fa
parent
commit
d2d107ed09
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      libexec/saturnin-iam

+ 1
- 1
libexec/saturnin-iam Vedi File

@@ -63,7 +63,7 @@ start_familiar() {
63 63
     # start familiar as indicated by conf file (unless running)
64 64
     #
65 65
     local f=$1
66
-    pids_matching $f && return 0
66
+    pids_matching $f >/dev/null && return 0
67 67
     local like=$(saturnin conf -p iam.starting.like.this.$f)
68 68
     debug -v f like
69 69
     if test -n  "$like";