Skip to content

Commit 17213f8

Browse files
committedOct 13, 2014
tools/gateway-report.sh: look for pettycoin-gateway process, not pettycoin
They're separate. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 2b547ba commit 17213f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tools/gateway-report.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ echo '<title>Pettycoin Gateway Status Page</title>'
1818
echo '</head><body>'
1919
echo '<h1>Pettycoin Gateway Status Page</h1>'
2020

21-
if pidof pettycoin >/dev/null; then
21+
if pidof pettycoin-gateway >/dev/null; then
2222
echo '<p>Gateway is active</p>'
2323
else
2424
echo '<p>Gateway is <b>DOWN</b></p>'

0 commit comments

Comments
 (0)
Please sign in to comment.