ACC SHELL

Path : /proc/self/root/usr/lib/pm-utils/sleep.d/
File Upload :
Current File : //proc/self/root/usr/lib/pm-utils/sleep.d/06autofs

#!/bin/bash

. "${PM_FUNCTIONS}"

command_exists rcautofs || exit $NA

case "$1" in
	hibernate|suspend)
		rcautofs stop
		;;
	thaw|resume)
		rcautofs restart
		;;
	*) exit $NA
		;;
esac

exit $?

ACC SHELL 2018