20 lines
385 B
Plaintext
20 lines
385 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="Custom moeny network and iptables setup"
|
|
|
|
depend() {
|
|
# Run after networking and libvirt (if used) are up
|
|
after network-online libvirtd
|
|
need net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Setting moeny network routes and iptables"
|
|
/usr/local/bin/setup-moeny-network.sh
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping moeny network Setup (no-op)"
|
|
eend 0
|
|
} |