summaryrefslogtreecommitdiff
path: root/scripts/rvi_ctl.template
blob: 82ae11bcb19ac9cc99fdb86a1bd8a45951865d91 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#!/bin/sh
#

#
# Mozilla Public License, version 2.0.  The full text of the
# Mozilla Public License is at https://www.mozilla.org/MPL/2.0/
#
#
# Setup a correct configuration and launch an RVI release node.
# If a UUID file has not been created, it will be done at this time.
# Init.d script to start and stop an RVI system installed
# through an RPM.
#

# Assignment of default values done by rvi_install.sh
echo ${RVI_BINDIR:="__RVI_BINDIR__"} > /dev/null
echo ${RVI_LOGDIR:="__RVI_LOGDIR__"} > /dev/null
echo ${ERL:=erl} > /dev/null



usage() {
    echo "Usage: $0 [-c config_file] start|stop|console|attach|ping"
    echo
    echo "  -c config_file  Configuration file to launch rvi node with."
    echo "                  Mandatory for start and console. Ignored for"
    echo "                  all other commands."
    echo
    echo "  start           Start an rvi node with the given configuration file."
    echo
    echo "  stop            Stop an rvi node previously started with 'start'."
    echo
    echo "  console         Start an rvi in foreground mode."
    echo
    echo "  attach          Attach to an rvi node previously started with 'start'."
    echo
    echo "Environennt variables. Default value in paranthesis::"
    echo "\$RVI_BINDIR ($RVI_BINDIR)  Location of binary files."
    echo "\$RVI_LOGDIR ($RVI_LOGDIR)  Location of log files."
    exit 1
}

CONFIG_FILE=""
SNAME="__RVI_NAME__"
COOKIE=rvi_cookie
while getopts "c:" o; do
    case "${o}" in
        c)
            CONFIG_FILE=${OPTARG}
            ;;
        *)
            usage
            ;;
    esac
done

shift $((${OPTIND}-1))
CMD=$1


if [ "${CMD}" != "start" -a "${CMD}" != "stop" -a  "${CMD}" != "console" -a  "${CMD}" != "ping" ]
then
    usage
fi

RUNDIR=${RVI_RUNDIR:-"/tmp/rvi_${$}"}

export ERL_LIBS=${RVI_BINDIR}:${RVI_BINDIR}/deps:${RVI_BINDIR}/components

#
# See if we need to process a config file
#
if [ ${CMD} = "start" -o ${CMD} = "console" ]
then
    if [ -z "${CONFIG_FILE}" ]
    then
	echo "Missing -c <config_file> argument."
	usage
    fi
    #
    # Check if we need to prepend current dir
    # to relative config file path
    #
    if [ $(echo ${CONFIG_FILE} | cut -c 1,1) != "/" ]
    then
	CONFIG_FILE=${PWD}/${CONFIG_FILE}
    fi

    # Check that config file can be read.
    if [ ! -r "${CONFIG_FILE}" ]
    then
	echo "${CONFIG_FILE} cannot be opened for reading."
	usage
    fi
    #
    # Generate a config file that will end up as
    # /tmp/rvi/[cfg]/sys.config
    #
    (
	if [ -z "${RVI_RUNDIR}" ]
	then
	    RUNDIR="/tmp/rvi_${$}"
	    rm -rf ${RUNDIR}
	else
	    RUNDIR=${RVI_RUNDIR}
	fi
	install -d --mode=0755 ${RUNDIR}
	cd ${RUNDIR}
	RVI_LOGDIR="${RVI_LOGDIR}" ${RVI_BINDIR}/setup_gen rvi ${CONFIG_FILE} rvi
    )

    # Did we succeed with config generation?
    if [ "$?" != "0" ]
    then
	# Nope
	echo "Failed to process configuration file."
	exit "$?"
    fi
fi

LAUNCH="${ERL} -boot ${RUNDIR}/rvi/start -sname ${SNAME} -config ${RUNDIR}/rvi/sys -setcookie ${COOKIE}"

case "${CMD}" in
   start)
	 install -D -d --mode 0755  ${RVI_LOGDIR}
	 exec run_erl -daemon ${RUNDIR}/ ${RVI_LOGDIR} "exec ${LAUNCH}"
	 ;;

   console)
       exec ${LAUNCH}
       ;;

   stop)
       exec ${RVI_BINDIR}/nodetool -sname ${SNAME} -setcookie ${COOKIE} stop
       ;;

   ping)
       exec ${RBI_BINDIR}/nodetool -sname ${SNAME} -setcookie ${COOKIE} ping
       ;;

   attach)
       exec to_erl ${RUNDIR}
       ;;

esac