]> git.proxmox.com Git - mirror_ovs.git/blob - rhel/usr_lib_systemd_system_ovn-controller-vtep.service
rhel: openvswitch-fedora.spec.in: Drop explicit usermod/groupadd deps
[mirror_ovs.git] / rhel / usr_lib_systemd_system_ovn-controller-vtep.service
1 # See ovn-controller-vtep(8) for details about ovn-controller-vtep.
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 #
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 #
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"
28
29 [Unit]
30 Description=OVN VTEP gateway controller daemon
31 After=syslog.target
32 Requires=openvswitch.service
33 After=openvswitch.service
34
35 [Service]
36 Type=simple
37 Restart=on-failure
38 Environment=OVS_RUNDIR=%t/openvswitch
39 Environment=OVN_DB=unix:%t/openvswitch/db.sock
40 Environment=VTEP_DB=unix:%t/openvswitch/db.sock
41 EnvironmentFile=-/etc/sysconfig/ovn-controller-vtep
42 ExecStart=/usr/bin/ovn-controller-vtep -vconsole:emer -vsyslog:err -vfile:info \
43 --log-file=/var/log/openvswitch/ovn-controller-vtep.log \
44 --no-chdir --pidfile=${OVS_RUNDIR}/ovn-controller-vtep.pid \
45 --ovnsb-db=${OVN_DB} --vtep-db=${VTEP_DB}
46
47 [Install]
48 WantedBy=multi-user.target