15 lines
277 B
Plaintext
Executable File
15 lines
277 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Bee: bring up network interfaces via DHCP"
|
|
|
|
depend() {
|
|
need localmount
|
|
before bee-update bee-audit
|
|
}
|
|
|
|
start() {
|
|
ebegin "Bringing up network interfaces"
|
|
/usr/local/bin/bee-network.sh >> /var/log/bee-network.log 2>&1
|
|
eend 0
|
|
}
|