#!/bin/sh
#
#Script for edit the file auto_master and comment the
#line auto_staging
#
ed /etc/auto_master << EOF >/dev/null 2>&1
1
/\/mnt.staging/
s/\/mnt.staging/#\/mnt.staging/
w
q
EOF
echo "Restart autofs daemon"
service autofs restart
echo "Done"
