#!/usr/bin/env python3 # This file is part of OpenPlotter. # Copyright (C) 2024 by Sailoog # # 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 . 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'])