-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathchkconfig.sh
More file actions
231 lines (212 loc) · 5.17 KB
/
chkconfig.sh
File metadata and controls
231 lines (212 loc) · 5.17 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#!/bin/sh
#
# $NetBSD: chkconfig.sh,v 1.1 2001/03/14 03:51:47 thorpej Exp $
#
# Copyright (c) 2001 Zembu Labs, Inc.
# All rights reserved.
#
# Author: Dan Mercer <dmercer@zembu.com>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by Zembu Labs, Inc.
# 4. Neither the name of Zembu Labs nor the names of its employees may
# be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY ZEMBU LABS, INC. ``AS IS'' AND ANY EXPRESS
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WAR-
# RANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DIS-
# CLAIMED. IN NO EVENT SHALL ZEMBU LABS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# chkconfig - configuration state checker
#
# This script is written to work with the NetBSD (1.5 and later) rc system.
# It is meant to provide the same functionality as found in IRIX chkconfig.
# This script has nothing to do with the abortion produced by RedHat that
# has the same name.
#
# chkconfig makes use of the '-k' flag to rcorder. It will not work
# with versions of rcorder that do not support '-k'.
#
# Dan Mercer <dmercer@zembu.com>
. /etc/rc.subr
display()
{
# ouput $1 with 'on' or 'off' based on the return of checkyesno()
# Returns 0 for yes, 1 for no.
_name=$1
load_rc_config ${_name}
if checkyesno ${_name}; then
printf "\t%-15s\t\ton\n" ${_name}
return 0
else
printf "\t%-15s\t\toff\n" ${_name}
return 1
fi
}
exists()
{
# Returns true if an executable named $1 exists
# in /etc/rc.d/
_name=$1
fqp="/etc/rc.d/${_name}"
if [ -x "${fqp}" ]; then
return 0
else
usage "${fqp} does not exist"
return 1
fi
}
is_valid()
{
# Returns true if $1 appears to be a valid NetBSD
# rc script.
_name=$1
fqp="/etc/rc.d/${_name}"
if ! grep -s '. /etc/rc.subr' ${fqp} > /dev/null 2>&1; then
usage "${fqp} does not appear to be a NetBSD rc script"
return 1
elif ! grep -s '# KEYWORD:' ${fqp} > /dev/null 2>&1; then
if [ ${force} -ne 1 ]; then
usage "${fqp} doesn't contain a KEYWORD directive. Use -f"
else
return 1
fi
else
is_chkconfig=`grep -s '# KEYWORD:' ${fqp}|grep -s ${KEYWORD}`
if [ "${is_chkconfig}" ]; then
return 0
else
if [ ${force} -ne 1 ]; then
usage "${fqp} not under chkconfig control. Use -f"
else
return 1
fi
fi
fi
return 1
}
add_keyword()
{
# Adds the 'chkconfig' keyword to $1 if it is not
# there already, returning a 0. Otherwise exits
# with an appropriate usage error.
_name=$1
fqp="/etc/rc.d/${_name}"
if is_valid ${_name}; then
usage "${fqp} is already managed by chkconfig."
else
echo '# KEYWORD: chkconfig' >> ${fqp}
return 0
fi
}
usage()
{
# Print a (hopefully) useful usage message and exit nonzero.
# We don't make use of err() from rc.subr because we
# don't want error messages going to syslog.
_err=$1
echo "Error: ${_err}"
echo "Usage: $0 flag"
echo " $0 flag [ on | off ] "
echo " $0 [-f] flag [ on | off ]"
exit 1
}
on()
{
_name=$1
if [ ${force} -eq 1 ]; then
add_keyword ${_name}
fi
if is_valid ${_name}; then
output="/etc/rc.conf.d/${_name}"
echo "${_name}=YES" > "${output}"
fi
return 0
}
off()
{
_name=$1
if [ ${force} -eq 1 ]; then
add_keyword ${_name}
fi
if is_valid ${_name}; then
output="/etc/rc.conf.d/${_name}"
echo "${_name}=NO" > "${output}"
fi
return 0
}
KEYWORD='chkconfig'
action='show'
force=0
for i
do
case $1 in
-f)
force=1
;;
on)
action='on'
break
;;
off)
action='off'
break
;;
-*)
usage "Invalid argument ${i}"
exit 1
;;
*)
rcfile=${i}
;;
esac
shift
done
case ${action} in
show)
if [ ${force} -eq 1 ]; then
usage "-f flag requires 'on' or 'off'"
fi
if [ ! ${rcfile} ]; then
printf "\tService\t\t\tState\n"
printf "\t=======\t\t\t=====\n"
for i in `(cd /etc/rc.d; rcorder -k ${KEYWORD} *)`; do
display ${i}
done
else
if exists ${rcfile} && is_valid ${rcfile}; then
display ${rcfile}
exit $?
else
usage "Invalid rcfile: ${rcfile}"
fi
fi
exit 0
;;
on)
if exists ${rcfile}; then
on ${rcfile}
fi
;;
off)
if exists ${rcfile}; then
off ${rcfile}
fi
;;
esac