summaryrefslogtreecommitdiffstats
path: root/init-scripts/funcd
blob: 6066d99eea1b052bf5b4305375d06089211ce8b8 (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
85
86
87
88
89
90
91
#!/bin/sh
#
# funcd    func api provider
#
# chkconfig: 345 99 99 
# description:  Server to expose config, monitoring, and management apis to func
#               See https://hosted.fedoraproject.org/projects/func/
#
# processname: /usr/bin/funcd

# Sanity checks.
[ -x /usr/bin/funcd ] || exit 0

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

RETVAL=0

start() {
    echo -n $"Starting the funcd  : "
    if test -f /var/lock/subsys/funcd ; then
        echo_failure
        echo
        return 1
    fi
    /usr/bin/funcd --daemon
    RETVAL=$?
    echo_success
    echo
    touch /var/lock/subsys/funcd
    return $RETVAL
}


stop() {
    echo -n $"Stopping funcd daemon: "
    if ! test -f /var/lock/subsys/funcd ; then
        echo_failure
        echo
        return 1
    fi
    pkill funcd
    RETVAL=$?
    rm /var/lock/subsys/funcd
    echo_success
    echo
    return $RETVAL
}

mystatus() {
    if test -f /var/lock/subsys/funcd ; then
        echo "the funcd is alive..."
        return 0
    fi
    echo "we have lost the funcd"
    echo
    return 0
}

# See how we were called.
case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    status)
        mystatus
        RETVAL=$?
        ;;
    restart)
        stop
        start
        ;;
    condrestart)
        if [ -f /var/lock/subsys/vf_server ]; then
            stop
            start
        fi
        ;;
    reload)
        echo "can't reload configuration, you have to restart it"
        RETVAL=$?
        ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}"
        ;;
esac
exit $RETVAL