view core/sysvinit/rc.start @ 418:aa460c9d7031

templates: add xfce.sh
author David Demelier <markand@malikania.fr>
date Thu, 04 Apr 2019 12:49:57 +0200
parents 0d51fe2867b5
children
line wrap: on
line source

#
# /etc/rc.start: runlevel control script
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

if [ "$#" -ne 1 ]; then
	echo "usage: $0 runlevel" 1>&2
	exit 1
fi

if [ -f /etc/rc.conf ]; then
	source /etc/rc.conf
fi

# Start user services requested in rc.conf(5).
for s in $SERVICES; do
	#
	# Services are requested in the form name[:runlevel], if runlevel is
	# specified the service is started only if the system runlevel is
	# greater or equal to the request.
	#
	name="${s%%:*}"
	level="${s##*:}"

	# No minimum level, set to requested.
	if [ "$level" = "$name" ]; then
		level="$1"
	fi

	if [ -x /etc/rc.d/$name ] && [ "$level" -le "$1" ]; then
		/etc/rc.d/$name start
	fi
done