blob: 50c6020fe0edd5e28e6fee1080fc44e8c861b964 (
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
|
#!/bin/sh
#
# /etc/rc.common
# Framework for service initialization scripts.
#
# Copyright (C) 2014 Patrick "P. J." McDermott
#
# This file may be reproduced, distributed, modified, and otherwise dealt in
# under the terms of the Expat License.
set -u
SCRIPT=''
ALL_CMDS=''
LOG_MSG=''
EXTRA_COMMANDS=''
START=''
STOP=''
main()
{
local action=
local es=
SCRIPT="${1}"
. "${SCRIPT}"
ALL_CMDS=" start stop restart ${EXTRA_COMMANDS} "
if [ "x${START:+set}" = 'xset' ] || [ "x${STOP:+set}" = 'xset' ]; then
ALL_CMDS="${ALL_CMDS} enable disable "
fi
if [ ${#} -ne 2 ]; then
usage
return 1
fi
action="${2:-<unknown>}"
if [ "x${ALL_CMDS#* ${action} }" != "x${ALL_CMDS}" ]; then
[ "x${action%able}" = "x${action}" ] && \
[ -f /etc/rc.policy ] && \
[ "x$(cat /etc/rc.policy)" = 'xdisabled' ] && return 0
${action}
es=${?}
log_end ${es}
return ${es}
else
usage
return 1
fi
}
tty_printf()
{
local tty=
tty="$(tty)" && printf "${@}" >"${tty}"
}
usage() {
local cmds=
cmds="$(printf '%s|' ${ALL_CMDS})"
tty_printf 'Usage: %s {%s}\n' "${SCRIPT}" "${cmds%|}"
}
log()
{
local fmt="${1}"
shift 1
LOG_MSG="$(printf "${fmt}" "${@}")"
tty_printf '[ ] %s...\r' "${LOG_MSG}"
}
log_end()
{
local es="${1}"
[ "x${LOG_MSG:+set}" = 'xset' ] || return 0
case ${es} in
0)
tty_printf '[[32m ok [39m] %s... done.\n' \
"${LOG_MSG}"
;;
255)
tty_printf '[[33mwarn[39m] %s... done.\n' \
"${LOG_MSG}"
;;
*)
tty_printf '[[31mfail[39m] %s... failed.\n' \
"${LOG_MSG}"
;;
esac
}
# Default function definitions
stop()
{
:
}
restart()
{
stop
start
}
enable()
{
local name="${SCRIPT##*/}"
name="${name#[SK][0-9][0-9]}"
[ "x${START:+set}" = 'xset' ] && \
ln -sf "../init.d/${name}" "/etc/rc.d/S${START}${name}"
[ "x${STOP:+set}" = 'xset' ] && \
ln -sf "../init.d/${name}" "/etc/rc.d/K${STOP}${name}"
}
disable()
{
local name="${SCRIPT##*/}"
name="${name#[SK][0-9][0-9]}"
rm -f /etc/rc.d/[SK][0-9][0-9]"${name}"
}
main "${@}"
|