summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/mountall
blob: 4882427823af8e02b18f8aff39677c7a5a1790eb (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