summaryrefslogtreecommitdiffstats
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