diff options
author | David Walter Seikel | 2012-02-07 02:39:51 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-02-07 02:39:51 +1000 |
commit | 5799008d9cc1777e1cfbe8dc2f43fab0464a5d1f (patch) | |
tree | d7c3afcb45916cf8a09c36940283c33b140e0d16 /start-sim | |
parent | Properly check if the sim is running, not that untested shit I did last time.... (diff) | |
download | IGnoble-5799008d9cc1777e1cfbe8dc2f43fab0464a5d1f.zip IGnoble-5799008d9cc1777e1cfbe8dc2f43fab0464a5d1f.tar.gz IGnoble-5799008d9cc1777e1cfbe8dc2f43fab0464a5d1f.tar.bz2 IGnoble-5799008d9cc1777e1cfbe8dc2f43fab0464a5d1f.tar.xz |
Use the real pid file, not just the one I test with.
Diffstat (limited to '')
-rwxr-xr-x | start-sim | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ case $(basename $0) in | |||
78 | if [ -e /var/run/opensim/${tgt}.pid ] | 78 | if [ -e /var/run/opensim/${tgt}.pid ] |
79 | then | 79 | then |
80 | # Double check if it's REALLY running. | 80 | # Double check if it's REALLY running. |
81 | if [ "x$(ps -p $(cat /var/run/opensim/sim90.pid) --no-headers -o comm)" = "x" ]; then | 81 | if [ "x$(ps -p $(cat /var/run/opensim/${tgt}.pid) --no-headers -o comm)" = "x" ]; then |
82 | $SUDO rm -f /var/run/opensim/${tgt}.pid | 82 | $SUDO rm -f /var/run/opensim/${tgt}.pid |
83 | fi | 83 | fi |
84 | fi | 84 | fi |