Files
contrib/tailscale-static/comar/service.py
T
2026-06-27 23:27:13 +03:00

36 lines
792 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
from comar.service import *
import os
serviceType = "local"
serviceDesc = _({"en": "Tailscale node agent",
"tr": "Tailscale düğüm aracısı"})
serviceDefault = "on"
PIDFILE="/run/tailscale/tailscaled.pid"
@synchronized
def start():
# path to executable
# creates a pid file, sets the working directory and calls the jar file
startService(command="/usr/bin/tailscaled-comar-compat.sh",
args="",
donotify=True)
@synchronized
def stop():
stopService(pidfile=PIDFILE,
donotify=True)
try:
os.unlink(PIDFILE)
os.system("/usr/bin/tailscaled --cleanup")
except:
pass
def ready():
start()
def status():
return isServiceRunning(pidfile=PIDFILE)