blob: ec4772f87941b869a78dafb76bd3d6e698fde5b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
type vyconf_defaults = {
config_file: string;
pid_file: string;
socket: string;
}
let defaults = {
config_file = "/etc/vyconfd.conf";
pid_file = "/var/run/vyconfd.pid";
socket = "/var/run/vyconfd.sock";
}
|