16 lines
288 B
Plaintext
Executable File
16 lines
288 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Bee: update audit binary from USB/network"
|
|
|
|
depend() {
|
|
need localmount
|
|
after bee-network
|
|
before bee-audit
|
|
}
|
|
|
|
start() {
|
|
ebegin "Checking for audit binary update"
|
|
/usr/local/bin/bee-update.sh >> /var/log/bee-update.log 2>&1
|
|
eend 0
|
|
}
|