diff options
author | Ruben Pollan <meskio@sindominio.net> | 2020-09-17 18:35:54 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-09-25 13:08:45 +0200 |
commit | eb27557a27add4e34ecb3b34a4aa3d2f6f167166 (patch) | |
tree | 58af56847ee5e4c0cddcc761cc41f60dc8808ea6 /pkg/helper | |
parent | f5e3655bfd66d19b37f1359fa91f841b687e339d (diff) |
[test] fix the tests to work with the new vendoring
Diffstat (limited to 'pkg/helper')
-rw-r--r-- | pkg/helper/linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/helper/linux.go b/pkg/helper/linux.go index 235351b..f1e21c8 100644 --- a/pkg/helper/linux.go +++ b/pkg/helper/linux.go @@ -30,10 +30,10 @@ const ( openvpnGroup = "nogroup" LogFolder = "/var/log/" systemOpenvpnPath = "/usr/sbin/openvpn" - snapOpenvpnPath = "/snap/bin/" + config.BinaryName + ".openvpn" ) var ( + snapOpenvpnPath = "/snap/bin/" + config.BinaryName + ".openvpn" platformOpenvpnFlags = []string{ "--script-security", "1", "--user", openvpnUser, |