diff options
author | Ruben Pollan <meskio@sindominio.net> | 2019-01-15 17:19:19 +0100 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2019-01-15 17:26:06 +0100 |
commit | 52d7fa7c91dd5bad49f07e33956681b5e341c6fa (patch) | |
tree | 0cd14b39203ef5652ee2c76ac27320db4abb4ef8 /pkg/standalone/main.go | |
parent | 80b6aef1206fb63f1a2985f003f6b484a23bb949 (diff) |
[feat] move provider configuration into a set of constants
Diffstat (limited to 'pkg/standalone/main.go')
-rw-r--r-- | pkg/standalone/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/standalone/main.go b/pkg/standalone/main.go index f7e1976..d5618e5 100644 --- a/pkg/standalone/main.go +++ b/pkg/standalone/main.go @@ -20,6 +20,7 @@ import ( "log" "os" + "0xacab.org/leap/bitmask-systray/pkg/config" "github.com/apparentlymart/go-openvpn-mgmt/openvpn" ) @@ -50,7 +51,7 @@ func Init() (*Bitmask, error) { if err != nil { return nil, err } - err = ioutil.WriteFile(b.getCaCertPath(), caCert, 0600) + err = ioutil.WriteFile(b.getCaCertPath(), config.CaCert, 0600) go b.openvpnManagement() return &b, err |