mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
The name IPC service is not very descriptive. By nature of being separate processes, we need to use IPC to communicate between them. The important thing is that the service process has control over the tunnel. Therefore, we rename everything to "Tunnel service". The only part that is not changed are historic changelog entries. Resolves: #9048
10 lines
286 B
Bash
Executable File
10 lines
286 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euox pipefail
|
|
|
|
# Test-install the MSI package, since it already exists here
|
|
msiexec //i "$BINARY_DEST_PATH.msi" //log install.log //qn
|
|
# For debugging
|
|
cat install.log
|
|
# Make sure the Tunnel service is running
|
|
sc query FirezoneClientTunnelService | grep RUNNING
|