mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 11:05:45 +00:00
fc4b25d9fd
Updates tailscale/corp#9221 Signed-off-by: David Anderson <danderson@tailscale.com>
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
|