Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 58e0e82442075ea00d287d903bae8f4e > files > 5

msec-1.11-2.mga5.x86_64.rpm

#!/bin/sh
#
# Enables MSEC policy on system startup
#
# description: Enables MSEC security policy on system startup
# chkconfig: 345 13 20
#
### BEGIN INIT INFO
# Provides: msec
# Default-Start: 3 4 5
# Short-Description: Enables MSEC security policy on boot
# Description: Enables MSEC security settings on boot
### END INIT INFO

PATH=/sbin:/bin:/usr/sbin:/usr/bin

# Source function library.
. /etc/rc.d/init.d/functions

if [ ! -f /etc/security/msec/security.conf ] ; then
	# no msec configuration, aborting
	exit
fi

. /etc/security/msec/security.conf

# See how we were called.
case "$1" in
  start)
	if [ "$ENABLE_STARTUP_MSEC" = "yes" ]; then
		gprintf "Enabling MSEC security policy"
		/usr/sbin/msec -q
		if [ $? == 0 ]; then
			echo_success
		else
			echo_failure
		fi
		echo
	fi
	if [ "$ENABLE_STARTUP_PERMS" = "yes" ]; then
		gprintf "Setting and checking MSEC permissions"
		/usr/sbin/msecperms -q
		if [ $? == 0 ]; then
			echo_success
		else
			echo_failure
		fi
		echo
	elif [ "$ENABLE_STARTUP_PERMS" = "enforce" ]; then
		gprintf "Setting and enforcing MSEC permissions"
		/usr/sbin/msecperms -e -q
		if [ $? == 0 ]; then
			echo_success
		else
			echo_failure
		fi
		echo
	fi
	;;
  stop)
  	# nothing to do
	;;
  status)
	if [ "$ENABLE_STARTUP_MSEC" = "yes" ]; then
		gprintf "MSEC security policy on startup: enabled"
	else
		gprintf "MSEC security policy on startup: disabled"
	fi
	echo
	if [ "$ENABLE_STARTUP_PERMS" = "yes" ]; then
		gprintf "MSEC permissions on startup: enabled"
	elif [ "$ENABLE_STARTUP_PERMS" = "enforce" ]; then
		gprintf "MSEC permissions on startup: enforced"
	else
		gprintf "MSEC permissions on startup: disabled"
	fi
	echo
	;;
  restart)
	$0 stop
	$0 start
	;;
  *)
	gprintf "Usage: %s\n" "$0 {start|stop|restart|status}"
	exit 1
esac

exit 0