missed these!
This commit is contained in:
parent
fe2a7d9069
commit
0596d5fe18
|
|
@ -0,0 +1,6 @@
|
|||
// +build darwin
|
||||
|
||||
package unifipoller
|
||||
|
||||
// DefaultConfFile is where to find config is --config is not prvided.
|
||||
const DefaultConfFile = "/usr/local/etc/unifi-poller/up.conf"
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
// +build !windows,!darwin
|
||||
|
||||
package unifipoller
|
||||
|
||||
// DefaultConfFile is where to find config is --config is not prvided.
|
||||
const DefaultConfFile = "/etc/unifi-poller/up.conf"
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
// +build windows
|
||||
|
||||
package unifipoller
|
||||
|
||||
// DefaultConfFile is where to find config is --config is not prvided.
|
||||
const DefaultConfFile = `C:\ProgramData\unifi-poller\up.conf`
|
||||
Loading…
Reference in New Issue