2018-06-30 01:45:51 +02:00
|
|
|
package runtime
|
2017-05-06 14:37:24 +02:00
|
|
|
|
2018-07-17 23:11:47 +02:00
|
|
|
import (
|
|
|
|
"github.com/FreifunkBremen/yanic/lib/duration"
|
|
|
|
|
|
|
|
respondYanic "github.com/FreifunkBremen/yanic/respond"
|
|
|
|
)
|
|
|
|
|
2017-05-06 14:37:24 +02:00
|
|
|
//config file of this daemon (for more the config_example.conf in git repository)
|
|
|
|
type Config struct {
|
2017-05-07 03:37:30 +02:00
|
|
|
// prevent crashes
|
|
|
|
StatePath string `toml:"state_path"`
|
2018-06-30 01:45:51 +02:00
|
|
|
|
2017-05-06 14:37:24 +02:00
|
|
|
// address on which the api and static content webserver runs
|
|
|
|
WebserverBind string `toml:"webserver_bind"`
|
|
|
|
// path to deliver static content
|
|
|
|
Webroot string `toml:"webroot"`
|
|
|
|
|
2018-06-30 16:20:54 +02:00
|
|
|
// auth secret
|
|
|
|
Secret string `toml:"secret"`
|
|
|
|
|
2017-05-06 14:37:24 +02:00
|
|
|
// SSH private key
|
2018-07-24 15:07:11 +02:00
|
|
|
SSHPrivateKey string `toml:"ssh_key"`
|
|
|
|
SSHInterface string `toml:"ssh_interface"`
|
|
|
|
SSHIPAddressSuffix string `toml:"ssh_ipaddress_suffix"`
|
|
|
|
SSHTimeout duration.Duration `toml:"ssh_timeout"`
|
2017-05-06 19:44:37 +02:00
|
|
|
|
|
|
|
// yanic socket
|
2018-07-17 23:11:47 +02:00
|
|
|
YanicEnable bool `toml:"yanic_enable"`
|
|
|
|
YanicSynchronize duration.Duration `toml:"yanic_synchronize"`
|
|
|
|
YanicCollectInterval duration.Duration `toml:"yanic_collect_interval"`
|
|
|
|
Yanic respondYanic.InterfaceConfig `toml:"yanic"`
|
2017-05-06 14:37:24 +02:00
|
|
|
}
|