chore(constants): remove and move constant paths

- Remove unused paths
- Move paths to inline constants if used only once
This commit is contained in:
Quentin McGaw
2022-01-29 15:34:59 +00:00
parent 5603e25542
commit c73369e11c
8 changed files with 22 additions and 33 deletions

View File

@@ -1,30 +1,8 @@
package constants
const (
// UnboundConf is the file path to the Unbound configuration file.
UnboundConf string = "/etc/unbound/unbound.conf"
// ResolvConf is the file path to the system resolv.conf file.
ResolvConf string = "/etc/resolv.conf"
// CACertificates is the file path to the CA certificates file.
CACertificates string = "/etc/ssl/certs/ca-certificates.crt"
// OpenVPNAuthConf is the file path to the OpenVPN auth file.
OpenVPNAuthConf string = "/etc/openvpn/auth.conf"
// OpenVPNConf is the file path to the OpenVPN client configuration file.
OpenVPNConf string = "/etc/openvpn/target.ovpn"
// PIAPortForward is the file path to the port forwarding JSON information for PIA servers.
PIAPortForward string = "/gluetun/piaportforward.json"
// TunnelDevice is the file path to tun device.
TunnelDevice string = "/dev/net/tun"
// NetRoute is the path to the file containing information on the network route.
NetRoute string = "/proc/net/route"
// RootHints is the filepath to the root.hints file used by Unbound.
RootHints string = "/etc/unbound/root.hints"
// RootKey is the filepath to the root.key file used by Unbound.
RootKey string = "/etc/unbound/root.key"
// ClientKey is the client key filepath.
ClientKey string = "/gluetun/client.key"
// ClientCertificate is the client certificate filepath.
ClientCertificate string = "/gluetun/client.crt"
OpenVPNAuthConf = "/etc/openvpn/auth.conf"
// ServersData is the server information filepath.
ServersData = "/gluetun/servers.json"
)