#!/bin/sh

# Create mount point and /efs mount point in fstab
if ! grep -q /efs /etc/fstab; then
	mkdir -p /efs
	echo "/dev/disk/by-partlabel/EFS	/efs	auto	ro	0	0" >> /etc/fstab
fi
