gentoo-ebuilds/net-misc/openvswitch/files/ovsdb-server-r3.service
Matthew Thode 0a3a711dce
net-misc/openvswitch: switch all runtime dirs to /run
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
2023-05-06 11:32:57 -05:00

22 lines
809 B
Desktop File

[Unit]
Description=Open vSwitch Database Unit
Documentation=man:ovsdb-server
After=syslog.target network-pre.target
Before=network.target network.service
Wants=ovs-delete-transient-ports.service
[Service]
Type=forking
Restart=on-failure
EnvironmentFile=-/etc/conf.d/ovsdb-server
ExecStartPre=/bin/chown ${OVS_USER_ID} /run/openvswitch /var/log/openvswitch
ExecStart=/usr/share/openvswitch/scripts/ovs-ctl \
--no-ovs-vswitchd --no-monitor --system-id=random \
--ovs-user=${OVS_USER_ID} \
start $OPTIONS
ExecStop=/usr/share/openvswitch/scripts/ovs-ctl --no-ovs-vswitchd stop
ExecReload=/usr/share/openvswitch/scripts/ovs-ctl --no-ovs-vswitchd \
--ovs-user=${OVS_USER_ID} \
--no-monitor restart $OPTIONS
RuntimeDirectory=openvswitch
RuntimeDirectoryMode=0755