mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-22 08:41:57 +00:00
Closes #4987 ```[tasklist] ### Before merging - [x] Get an x64 test VM on the Windows laptop and test a CI-built deb ```
10 lines
207 B
Bash
Executable File
10 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Usage: dpkg will call this after installing our files
|
|
|
|
set -euo pipefail
|
|
|
|
SERVICE_NAME="firezone-client-ipc"
|
|
|
|
sudo systemctl disable "$SERVICE_NAME"
|
|
sudo systemctl stop "$SERVICE_NAME"
|