]> git.proxmox.com Git - mirror_ovs.git/blob - rhel/usr_lib_systemd_system_ovn-controller-vtep.service
rhel: let *-ctl handle runtime directory
[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=forking
37 PIDFile=/var/run/openvswitch/ovn-controller-vtep.pid
38 Restart=on-failure
39 Environment=OVN_DB=unix:%t/openvswitch/ovnsb_db.sock
40 Environment=VTEP_DB=unix:%t/openvswitch/db.sock
41 EnvironmentFile=-/etc/sysconfig/ovn-controller-vtep
42 EnvironmentFile=/run/openvswitch.useropts
43 ExecStart=/usr/share/openvswitch/scripts/ovn-ctl \
44 --db-sb-sock=${OVN_DB} --db-sock=${VTEP_DB} \
45 --ovn-user=${OVS_USER_ID} \
46 start_controller_vtep
47 ExecStop=/usr/share/openvswitch/scripts/ovn-ctl stop_controller_vtep
48
49 [Install]
50 WantedBy=multi-user.target