Browse Source

Fixed bug in killing erlang.

Heinz N. Gies 12 years ago
parent
commit
5f463039c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cowboy/setup_erlang.py

+ 1 - 1
cowboy/setup_erlang.py

@@ -17,7 +17,7 @@ def start(args):
     return 1
 def stop():
   try:
-    subprocess.check_call("killall beam", shell=True, cwd="/usr/bin")
+    subprocess.check_call("killall beam.smp", shell=True, cwd="/usr/bin")
     return 0
   except subprocess.CalledProcessError:
     return 1