Path : /proc/self/root/usr/lib/pm-utils/sleep.d/ |
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 $?