summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/mountall
blob: 85151574e8a95cd9678bcdaed59604583a4ec27d (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh /etc/rc.common

start()
{
	log 'Mounting file systems'
	if [ -r /etc/fstab ]; then
		mount -a
	fi
}