Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > 340d81e2549f9d11ea6e972a3b254ccd > files > 2

util-vserver-sysv-0.30.215+svn2847-143596525.fc12.i686.rpm

#!/bin/bash
#
# vprocunhide  sets vserver related attributes for /proc
#
# chkconfig: - 26 74
# description: Makes some /proc entries visibly for vservers

: ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
test -e "$UTIL_VSERVER_VARS" || {
    echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2
    exit 1
}
. "$UTIL_VSERVER_VARS"

$_VSERVER_INFO - FEATURE iattr || exit 0

LOCKFILE=vprocunhide
. "$_LIB_VSERVER_INIT_FUNCTIONS"


function start()
{
    _beginResult $"Fixing /proc entries visibility"
    $_VPROCUNHIDE
    _endResult $?
    local retval=$?
    test "$retval" -ne 0 || touch "$lockfile"
    return $retval
}

function stop()
{
    $_RM -f "$lockfile"
}

function restart()
{
    stop
    start
}

case "$1" in
    start|stop|restart)	$1;;
    reload)		;;
    condrestart)
	test -f $lockfile && restart || :
	;;
    status)
	test -f $lockfile && {
	    echo $"/proc entries were fixed"
	    exit 0
	}
	echo $"/proc entries are not fixed"
	exit 1
	;;
    *)
        echo "Usage: $0 {start|stop|reload|restart|condrestart|status}"
	exit 2
	;;
esac