summaryrefslogtreecommitdiffstats
path: root/util-vserver-netns
blob: 3141b5f434bd9ff1fd74bfc127d7689a9430b760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
### BEGIN INIT INFO
# Provides:          util-vserver-netns
# Required-Start:    $remote_fs $syslog $time util-vserver
# Required-Stop:     $remote_fs $syslog $time util-vserver
# X-Start-Before:    vservers-default
# X-Stop-After:      vservers-default
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Sets the path to vshelper for netns handling
# Description:       Sets the path to vshelper for netns handling
### END INIT INFO

: ${UTIL_VSERVER_VARS:=/usr/share/util-vserver/netns/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"

LOCKFILE=util-vserver-netns
. "$_LIB_VSERVER_INIT_FUNCTIONS"
. "$_LIB_FUNCTIONS"
. "$_LIB_VSERVER_FUNCTIONS"

function start()
{
    _beginResult $"Setting path to vshelper"

    local retval
    if test -r /proc/sys/kernel/vshelper; then
        grep -qv "$_VSHELPER" /proc/sys/kernel/vshelper && \
            cat /proc/sys/kernel/vshelper > "$lockfile.save"

        set_helper
        retval=$?
    else
        retval=1
    fi

    _endResult $retval
    test "$retval" -ne 0 || touch "$lockfile"
    return $retval
}

function stop()
{
    if test -r "$lockfile.save"; then
        _beginResult $"Setting old path to vshelper"
        _VSHELPER="$(cat "$lockfile.save")"
        set_helper
        _endResult $?

        $_RM -f "$lockfile.save"
    fi

    $_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 $"Path to vshelper.netns has been set"
	    exit 0
	}
	echo $"Path to vshelper.netns has not been set"
	exit 1
	;;
    *)
        echo "Usage: $0 {start|stop|reload|restart|condrestart|status}"
	exit 2
	;;
esac