index
:
pkg/base-files.git
master
"base-files" package
Patrick McDermott
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
etc
/
init.d
/
mountall
blob: 5675752bc39c6534350a4179b4307952ca57c6b4 (
plain
)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh case "${1}" in start) mount -a ;; stop) umount -a -r ;; esac