summaryrefslogtreecommitdiff
path: root/src/defaults.ml
blob: be77e89479ff8ecab213fdb424905cc93d3f2952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
type vyconf_defaults = {
    config_file: string;
    version: string;
    pid_file: string;
    socket: string;
}

let defaults = {
    config_file = "/etc/vyconfd.conf";
    version = "0.0.1";
    pid_file = "/var/run/vyconfd.pid";
    socket = "/var/run/vyconfd.sock";
}