blob: 792e6710a1e35b051243edffccac947bfaec3b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/bin/sh
# This is a configuration file for keactrl script which controls
# the startup, shutdown, reconfiguration and gathering the status
# of the Kea's processes.
# Note that control agent must be launched after servers and netconf last.
# shellcheck disable=SC2034
# SC2034: ... appears unused. Verify use (or export if used externally).
# prefix holds the location where the Kea is installed.
prefix="@prefix@"
# Location of Kea configuration files.
kea_dhcp4_config_file="@sysconfdir@/@PACKAGE@/kea-dhcp4.conf"
kea_dhcp6_config_file="@sysconfdir@/@PACKAGE@/kea-dhcp6.conf"
kea_dhcp_ddns_config_file="@sysconfdir@/@PACKAGE@/kea-dhcp-ddns.conf"
kea_ctrl_agent_config_file="@sysconfdir@/@PACKAGE@/kea-ctrl-agent.conf"
kea_netconf_config_file="@sysconfdir@/@PACKAGE@/kea-netconf.conf"
# Location of Kea binaries.
exec_prefix="@exec_prefix@"
dhcp4_srv="@sbindir@/kea-dhcp4"
dhcp6_srv="@sbindir@/kea-dhcp6"
dhcp_ddns_srv="@sbindir@/kea-dhcp-ddns"
ctrl_agent_srv="@sbindir@/kea-ctrl-agent"
netconf_srv="@sbindir@/kea-netconf"
# Start DHCPv4 server?
dhcp4=yes
# Start DHCPv6 server?
dhcp6=yes
# Start DHCP DDNS server?
dhcp_ddns=no
# Start Control Agent?
ctrl_agent=yes
# Start Netconf?
netconf=no
# Be verbose?
kea_verbose=no
|