#!/bin/sh /etc/rc.common

START=49

start()
{
	gdisplay=$(uci get gargoyle.display.system_initd 2>/dev/null)
	if [ -z "$gdisplay" ] ; then
		uci set gargoyle.display.system_initd='Services'
		uci set gargoyle.scripts.system_initd='initd.sh'
		uci set gargoyle.system.initd='310'
		uci commit
	fi
}
