Skip to content

Commit

Permalink
tools/gateway-report.sh: look for pettycoin-gateway process, not pett…
Browse files Browse the repository at this point in the history
…ycoin

They're separate.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
rustyrussell committed Oct 13, 2014
1 parent 2b547ba commit 17213f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gateway-report.sh
Expand Up @@ -18,7 +18,7 @@ echo '<title>Pettycoin Gateway Status Page</title>'
echo '</head><body>'
echo '<h1>Pettycoin Gateway Status Page</h1>'

if pidof pettycoin >/dev/null; then
if pidof pettycoin-gateway >/dev/null; then
echo '<p>Gateway is active</p>'
else
echo '<p>Gateway is <b>DOWN</b></p>'
Expand Down

0 comments on commit 17213f8

Please sign in to comment.