install_service()
{
	message_start Creating a service called rdamon

	sacadm -a -p rdamon -t ttymon -c /usr/lib/saf/ttymon -v `ttyadm -V`

	if [ $? -eq 0 ]; then
		message_done
	else
		terminate "Failed to create port monitor rdamon"
	fi

	if [ -d /etc/saf/rdamon ]; then
		message Ensuring correct group ownership of /etc/saf/rdamon
		chgrp sys /etc/saf/rdamon
	else
		terminate "Service access facility for rdamon is not enabled"
	fi
}
