mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-16 18:08:40 +00:00
8 lines
156 B
Bash
Executable File
8 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ "$1" = "remove" ]; then
|
|
if [ -d /run/systemd/system ]; then
|
|
deb-systemd-invoke stop 'tailscaled.service' >/dev/null || true
|
|
fi
|
|
fi
|