#!/usr/bin/perl

system( $ARGV[0] . "/Contents/Resources/aaa_alert",		# Call alert
		$ARGV[0],										# Path to this installer pkg
		"iDVD",											# app to block on
		"Running",										# action to send if I'm running app
		"RunningOther",									# action to send if some other user is running app
		);

# now make sure to exit 0
exit 0;
