blob: d8fc484dff0ab019bac5e9f143c3c49113f41b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
type vyconf_defaults = {
config_file: string;
pid_file: string;
socket: string;
log_template: string;
log_level: string;
legacy_config_path: string;
}
let defaults = {
config_file = "/etc/vyos/vyconfd.conf";
pid_file = "/var/run/vyconfd.pid";
socket = "/var/run/vyconfd.sock";
log_template = "$(date) $(name)[$(pid)]: $(message)";
log_level = "notice";
legacy_config_path = "/opt/vyatta/etc/config/config.boot";
}
|