2020-03-19 06:43:57 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
|
|
|
|
|
|
|
Gracefully stop Onionr daemon
|
|
|
|
"""
|
|
|
|
import os
|
2022-08-03 05:23:22 +00:00
|
|
|
from signal import SIGTERM
|
2020-03-19 06:43:57 +00:00
|
|
|
|
2022-08-03 05:23:22 +00:00
|
|
|
from filepaths import pid_file
|
2022-09-27 17:21:00 +00:00
|
|
|
from logger import log as logging
|
2020-03-19 06:43:57 +00:00
|
|
|
"""
|
2022-03-18 00:56:31 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-03-19 06:43:57 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def kill_daemon():
|
|
|
|
"""Shutdown the Onionr daemon (communicator)."""
|
2022-08-03 05:23:22 +00:00
|
|
|
try:
|
|
|
|
with open(pid_file, 'r') as pid:
|
|
|
|
os.kill(int(pid.read()), SIGTERM)
|
|
|
|
except FileNotFoundError:
|
2022-09-27 17:21:00 +00:00
|
|
|
logging.error("Daemon not running/pid file missing")
|
|
|
|
logging.warn('Stopping the running daemon, if one exists...', timestamp=False,
|
|
|
|
)
|
2020-03-19 06:43:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
kill_daemon.onionr_help = "Gracefully stops the " # type: ignore
|
|
|
|
kill_daemon.onionr_help += "Onionr API servers" # type: ignore
|