mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
fc4b25d9fd
Updates tailscale/corp#9221 Signed-off-by: David Anderson <danderson@tailscale.com>
9 lines
268 B
Bash
Executable File
9 lines
268 B
Bash
Executable File
# $1 == 0 for uninstallation.
|
|
# $1 == 1 for removing old package during upgrade.
|
|
|
|
systemctl daemon-reload >/dev/null 2>&1 || :
|
|
if [ $1 -ge 1 ] ; then
|
|
# Package upgrade, not uninstall
|
|
systemctl try-restart tailscaled.service >/dev/null 2>&1 || :
|
|
fi
|