2024-04-13 19:47:29 +02:00

32 lines
1.4 KiB
Python

#!/usr/bin/env python3
# This file is part of OpenPlotter.
# Copyright (C) 2024 by Sailoog <https://github.com/openplotter/openplotter-maiana>
#
# Openplotter 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 2 of the License, or
# any later version.
# Openplotter 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 Openplotter. If not, see <http://www.gnu.org/licenses/>.
import sys, subprocess
if sys.argv[1]=='sk':
if sys.argv[2]=='restart':
subprocess.call(['systemctl', 'stop', 'signalk.service'])
subprocess.call(['systemctl', 'stop', 'signalk.socket'])
subprocess.call(['systemctl', 'start', 'signalk.socket'])
subprocess.call(['systemctl', 'start', 'signalk.service'])
if sys.argv[1]=='enable':
subprocess.call(['systemctl', 'restart', 'openplotter-maiana-read.service'])
subprocess.call(['systemctl', 'enable', 'openplotter-maiana-read.service'])
elif sys.argv[1]=='disable':
subprocess.call(['systemctl', 'stop', 'openplotter-maiana-read.service'])
subprocess.call(['systemctl', 'disable', 'openplotter-maiana-read.service'])