summaryrefslogtreecommitdiff
blob: f28736610f4f9595df11644b2fd051152ac4dd31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/openrc-run

NAME="mogautomount"
BINARY="/usr/bin/mogautomount"

depend() {
	use net
	before mogstored
}

start() {
	ebegin "Mounting MogileFS disks"
	${BINARY} --chmod-mountpoints
	eend $?
}

stop() {
	:
}

# vim: ft=gentoo-init-d: