summaryrefslogtreecommitdiff
path: root/helper/linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'helper/linux.go')
-rw-r--r--helper/linux.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/helper/linux.go b/helper/linux.go
index f21cc55..3817989 100644
--- a/helper/linux.go
+++ b/helper/linux.go
@@ -23,11 +23,17 @@ import (
)
const (
- logPath = "/var/log/riseupvpn-helper.log"
+ logFolder = "/var/log/"
systemOpenvpnPath = "/usr/sbin/openvpn"
snapOpenvpnPath = "/snap/bin/riseup-vpn.openvpn"
)
+var (
+ platformOpenvpnFlags = []string{
+ "--script-security", "1",
+ }
+)
+
func daemonize() {}
func getOpenvpnPath() string {