#!/bin/sh
# chkconfig: 345 04 05
# description: This startup script sets locale from /proc/cmdline
### BEGIN INIT INFO
# Provides:          livecd-setlocale
# Required-Start:    $local_fs
# Required-Stop:     $local_fs
# Default-Start:     3 4 5
# Default-Stop:      0 1 2 6
# Short-Decription:  This startup script sets locale from /proc/cmdline
# Description:       This startup script sets locale from /proc/cmdline
### END INIT INFO

# Source function library.
WITHOUT_RC_COMPAT=1
. /etc/init.d/functions

RETVAL=0

case "$1" in
	start)
		/usr/libexec/livecd-setlocale
		;;
	start|stop|reload|restart|condstop|condrestart|condreload|status)
		;;
	*)
		msg_usage "${0##*/} {start|stop|reload|restart|condstop|condrestart|condreload|status}"
		RETVAL=1
		;;
esac

exit $RETVAL

