mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 07:05:16 +02:00
6 lines
143 B
Bash
Executable file
6 lines
143 B
Bash
Executable file
#!/bin/sh
|
|
exec 2>&1
|
|
modprobe -q openvswitch || exit 1
|
|
sv check ovsdb-server >/dev/null || exit 1
|
|
install -d /run/openvswitch
|
|
exec ovs-vswitchd
|