summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/mountall
blob: d3e65b57b5494151ac04f90a93a6213ebc688d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

start()
{
	printf 'Mounting file systems... '
	[ -r /etc/fstab ] && mount -a
	printf 'done\n.'
}

case "${1}" in
	start)
		start
		;;
	stop)
		;;
	*)
		printf 'Usage: %s {start|stop}\n' "${0}" >&2
		exit 1
		;;
esac