Sophie

Sophie

distrib > Mageia > 2 > x86_64 > by-pkgid > 9326f948bf60303de618a8f695277e1a > files > 2

pm-utils-1.4.1-4.mga2.src.rpm

#!/bin/sh

. "${PM_FUNCTIONS}"

case "$1" in
	hibernate|suspend)
		stopservice mysqld
		;;
	thaw|resume)
		restartservice mysqld
		;;
	*)
		;;
esac

exit $?