diff options
author | erg_samowzbudnik <uinarf@autistici.org> | 2021-06-12 10:17:58 +0200 |
---|---|---|
committer | erg_samowzbudnik <uinarf@autistici.org> | 2021-06-12 10:17:58 +0200 |
commit | cc45e524b57007b5e05dfb809f1a084d8c80cd28 (patch) | |
tree | 3345535e9510a0057a6ca990f4f108e64102d777 | |
parent | 65d2b5badda284dd4e5a4f97846bf53cf866f2e5 (diff) | |
download | RPGH-cc45e524b57007b5e05dfb809f1a084d8c80cd28.tar.gz RPGH-cc45e524b57007b5e05dfb809f1a084d8c80cd28.tar.bz2 RPGH-cc45e524b57007b5e05dfb809f1a084d8c80cd28.zip |
fix typo
-rw-r--r-- | monitor_unified.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor_unified.py b/monitor_unified.py index 0ce8133..f00c710 100644 --- a/monitor_unified.py +++ b/monitor_unified.py @@ -512,7 +512,7 @@ def main(): elif action=='start_fork': if os.fork():sys.exit(0) start() - elif action=='stop' + elif action=='stop': with open('/var/run/user/[your uid]/RPGH_starter.pid', r') as pid_file: pid=int(pid_file.read()) os.kill(pid,signal.SIGTERM) |