]> git.proxmox.com Git - mirror_ovs.git/blame - rhel/usr_lib_systemd_system_ovn-controller-vtep.service
Merge branch 'dpdk_merge' of https://github.com/istokes/ovs into HEAD
[mirror_ovs.git] / rhel / usr_lib_systemd_system_ovn-controller-vtep.service
CommitLineData
d3759fa4 1# See ovn-controller-vtep(8) for details about ovn-controller-vtep.
8ab46714
RB
2#
3# You may override the following variables to customize ovn-controller-vtep
4# behavior:
5#
6# OVN_DB - Set this variable to the location of the ovsdb server that is
7# serving the OVN_Southbound database. See the manpage for
8# ovn-controller-vtep for more details on the format for the db
9# location.
10#
11# VTEP_DB - Set this variable to the location of the ovsdb server that is
12# serving the hardware_vtep database. See the manpage for
13# ovn-controller-vtep for more details on the format for the db
14# location.
15#
d3759fa4
RB
16# To override these variables, you may create a configuration file
17# in the /etc/systemd/system/ovn-controller-vtep.d/ directory. For example,
18# you could place the following contents in
19# /etc/systemd/system/ovn-controller-vtep.d/local.conf:
20#
dd8b7d5b
RB
21# [System]
22# Environment="OVN_DB=unix:/usr/local/var/run/openvswitch/db.sock" "VTEP_DB=unix:/usr/local/var/run/openvswitch/vtep.sock"
23#
24# Alternatively, you may specify environment variables in the file /etc/sysconfig/ovn-controller-vtep:
25#
26# OVN_DB="unix:/usr/local/var/run/openvswitch/db.sock"
27# VTEP_DB="unix:/usr/local/var/run/openvswitch/vtep.sock"
8ab46714 28
ab4d55dc
RB
29[Unit]
30Description=OVN VTEP gateway controller daemon
31After=syslog.target
32Requires=openvswitch.service
33After=openvswitch.service
34
35[Service]
36Type=simple
94896b2e 37Restart=on-failure
ab4d55dc 38Environment=OVS_RUNDIR=%t/openvswitch
8ab46714
RB
39Environment=OVN_DB=unix:%t/openvswitch/db.sock
40Environment=VTEP_DB=unix:%t/openvswitch/db.sock
dd8b7d5b 41EnvironmentFile=-/etc/sysconfig/ovn-controller-vtep
ab4d55dc
RB
42ExecStart=/usr/bin/ovn-controller-vtep -vconsole:emer -vsyslog:err -vfile:info \
43 --log-file=/var/log/openvswitch/ovn-controller-vtep.log \
8ab46714
RB
44 --no-chdir --pidfile=${OVS_RUNDIR}/ovn-controller-vtep.pid \
45 --ovnsb-db=${OVN_DB} --vtep-db=${VTEP_DB}
db535fcc
LR
46
47[Install]
48WantedBy=multi-user.target