#!/bin/sh
# Copyright 2011 Paul Parsons
# Distributed under the terms of the GNU General Public License v3 or later

if [ ${RUNLEVEL} = "single" ]
then
	depend="single"
else
	depend="console"
fi
service --depend ${depend} || exit 1

exit 0
