#!/bin/sh

case "$1" in
	start)
		echo "Platform services all ready"
		vconftool -f set -t int memory/appservice/serviceready 1 -i -u 5000
		;;
	stop)
		echo "Platform services unavailable"
		vconftool -f set -t int memory/appservice/serviceready -1 -i -u 5000
		;;
	*)
		echo "Usage: status-manager {start|stop}" >&2
		exit 3
		;;
esac

