blob: ea80b2deb8a8c2fe2f409c80343db4d77275ab38 (
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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
|
# $Id: setup-routines.sh $
## @file
# VirtualBox Validation Kit - TestBoxScript Service Setup on Solaris.
#
#
# Copyright (C) 2006-2019 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#
# The contents of this file may alternatively be used under the terms
# of the Common Development and Distribution License Version 1.0
# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
# VirtualBox OSE distribution, in which case the provisions of the
# CDDL are applicable instead of those of the GPL.
#
# You may elect to license modified versions of this file under the
# terms and conditions of either the GPL or the CDDL or both.
#
#
# Detect solaris version.
#
MY_SOLARIS_VER=`uname -r`
case "${MY_SOLARIS_VER}" in
5.10) MY_SOLARIS_VER=10;;
5.11) MY_SOLARIS_VER=11;;
5.12) MY_SOLARIS_VER=12;;
*)
echo "Your solaris version (${MY_SOLARIS_VER}) is not supported." >&2
exit 1;;
esac
#
# Overriding setup.sh bits.
#
MY_FGREP="/usr/xpg4/bin/fgrep" # The other one does grok -q.
if [ ! -f "${MY_ETC_SUDOERS}" ]; then # sudo isn't standard on S10.
if [ -f "/opt/csw/etc/sudoers" ]; then
MY_ETC_SUDOERS=/opt/csw/etc/sudoers
fi
if [ -f "/etc/opt/csw/sudoers" ]; then
MY_ETC_SUDOERS=/etc/opt/csw/sudoers
fi
fi
#
# Solaris variables.
#
MY_SVC_TMP="/tmp/testboxscript.xml"
MY_SVC_FMRI="svc:/system/virtualbox/testboxscript"
MY_SVCCFG="/usr/sbin/svccfg"
MY_SVCADM="/usr/sbin/svcadm"
MY_TR="/usr/bin/tr"
MY_TAB=`printf "\t"`
if test "${MY_SOLARIS_VER}" -lt 11; then ## No gsed on S10?? ARG!
MY_SED="/usr/xpg4/bin/sed"
else
MY_SED="/usr/bin/gsed"
fi
if test "${MY_SOLARIS_VER}" -lt 11; then
MY_SCREEN="/opt/csw/bin/screen"
else
MY_SCREEN="screen"
fi
check_for_cifs() {
if [ ! -f /usr/kernel/fs/amd64/smbfs -a ! -f /usr/kernel/fs/smbfs -a "${MY_SOLARIS_VER}" -ge 11 ]; then
echo "error: smbfs client not installed?" >&2
echo "Please install smbfs client support:" >&2
echo " pkg install system/file-system/smb" >&2
echo " svcadm enable svc:/system/idmap" >&2
echo " svcadm enable svc:/network/smb/client" >&2
echo " svcs svc:/system/idmap" >&2
return 1;
fi
return 0;
}
##
# Loads config values from the current installation.
#
os_load_config() {
#
# Adjust defaults.
#
# - Use NFS instead of CIFS because S10 doesn't have smbfs and S11 has
# problems getting the password.
# - Pass the PATH along so we'll find sudo and other stuff later.
#
TESTBOXSCRIPT_BUILDS_TYPE="nfs"
TESTBOXSCRIPT_TESTRSRC_TYPE="nfs"
TESTBOXSCRIPT_DEFAULT_BUILDS_TYPE="nfs"
TESTBOXSCRIPT_DEFAULT_TESTRSRC_TYPE="nfs"
TESTBOXSCRIPT_ENVVARS[${#TESTBOXSCRIPT_ENVVARS[@]}]="PATH=${PATH}";
# Load old current.
if "${MY_SVCCFG}" "export" "${MY_SVC_FMRI}" > /dev/null 2>&1; then
# User. ASSUMES single quoted attribs.
MY_TMP=`"${MY_SVCCFG}" "export" "${MY_SVC_FMRI}" \
| ${MY_TR} '\n' ' ' \
`;
MY_TMP=`echo "${MY_TMP} " \
| ${MY_SED} \
-e 's/> */> /g' \
-e 's/ *\/>/ \/>/g' \
-e 's/^.*<method_credential \([^>]*\) \/>.*$/\1/' \
-e "s/^.*user='\([^']*\)'.*\$/\1/" \
`;
if [ -n "${MY_TMP}" ]; then
TESTBOXSCRIPT_USER="${MY_TMP}";
fi
# Arguments. ASSUMES sub-elements. ASSUMES single quoted attribs.
XMLARGS=`"${MY_SVCCFG}" "export" "${MY_SVC_FMRI}" \
| ${MY_TR} '\n' ' ' \
`;
case "${XMLARGS}" in
*exec_method*)
XMLARGS=`echo "${XMLARGS} " \
| ${MY_SED} \
-e 's/> */> /g' \
-e 's/ *\/>/ \/>/g' \
-e "s/^.*<exec_method \([^>]*\)name='start'\([^>]*\)>.*\$/\1 \2/" \
-e "s/^.*exec='\([^']*\)'.*\$/\1/" \
-e 's/"/"/g' \
-e 's/</</g' \
-e 's/>/>/g' \
-e 's/&/&/g' \
| ${MY_SED} \
-e 's/^.*testboxscript -d -m *//' \
`;
eval common_testboxscript_args_to_config ${XMLARGS}
;;
*)
echo "error: ${MY_SVCCFG}" "export" "${MY_SVC_FMRI} contains no exec_method element." >&2
echo " Please delete the service manually and restart setup.sh" >&2
exit 2
;;
esac
fi
}
##
# Adds one or more arguments to MY_ARGV after checking them for conformity.
#
os_add_args() {
while [ $# -gt 0 ];
do
case "$1" in
*\ *)
echo "error: Space in option value is not allowed ($1)" >&2
exit 1;
;;
*${MY_TAB}*)
echo "error: Tab in option value is not allowed ($1)" >&2
exit 1;
;;
*\&*)
echo "error: Ampersand in option value is not allowed ($1)" >&2
exit 1;
;;
*\<*)
echo "error: Greater-than in option value is not allowed ($1)" >&2
exit 1;
;;
*\>*)
echo "error: Less-than in option value is not allowed ($1)" >&2
exit 1;
;;
*)
MY_ARGV="${MY_ARGV} $1";
;;
esac
shift;
done
return 0;
}
##
# Installs, configures and starts the service.
#
os_install_service() {
# Only NFS for S10.
if [ "${MY_SOLARIS_VER}" -lt 11 ]; then
if [ "${TESTBOXSCRIPT_BUILDS_TYPE}" != "nfs" -o "${TESTBOXSCRIPT_TESTRSRC_TYPE}" != "nfs" ]; then
echo "On solaris 10 both share types must be 'nfs', cifs (smbfs) is not supported." >&2
return 1;
fi
fi
# Calc the command line.
MY_ARGV=""
common_compile_testboxscript_command_line
# Create the service xml config file.
cat > "${MY_SVC_TMP}" <<EOF
<?xml version='1.0'?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<service_bundle type='manifest' name='export'>
<service name='system/virtualbox/testboxscript' type='service' version='1'>
<create_default_instance enabled='false' />
<single_instance/>
<!-- Wait for the network to start up -->
<dependency name='milestone-network' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/milestone/network:default' />
</dependency>
<!-- We wish to be started as late as possible... so go crazy with deps. -->
<dependency name='milestone-devices' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/milestone/devices:default' />
</dependency>
<dependency name='multi-user' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/milestone/multi-user:default' />
</dependency>
<dependency name='multi-user-server' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/milestone/multi-user-server:default' />
</dependency>
<dependency name='filesystem-local' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/system/filesystem/local:default' />
</dependency>
<dependency name='filesystem-autofs' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/system/filesystem/autofs:default' />
</dependency>
EOF
if [ "`uname -r`" = "5.10" ]; then # Seems to be gone in S11?
cat >> "${MY_SVC_TMP}" <<EOF
<dependency name='filesystem-volfs' grouping='require_all' restart_on='none' type='service'>
<service_fmri value='svc:/system/filesystem/volfs:default' />
</dependency>
EOF
fi
cat >> "${MY_SVC_TMP}" <<EOF
<!-- start + stop methods -->
<exec_method type='method' name='start' exec='${MY_SCREEN} -S testboxscript -d -m ${MY_ARGV}'
timeout_seconds='30'>
<method_context working_directory='${TESTBOXSCRIPT_DIR}'>
<method_credential user='${TESTBOXSCRIPT_USER}' />
<method_environment>
<envvar name='PATH' value='${PATH}' />
</method_environment>
</method_context>
</exec_method>
<exec_method type='method' name='stop' exec=':kill' timeout_seconds='60' />
<property_group name='startd' type='framework'>
<!-- sub-process core dumps/signals should not restart session -->
<propval name='ignore_error' type='astring' value='core,signal' />
</property_group>
<!-- Description -->
<template>
<common_name>
<loctext xml:lang='C'>VirtualBox TestBox Script</loctext>
</common_name>
</template>
</service>
</service_bundle>
EOF
# Install the service, replacing old stuff.
if "${MY_SVCCFG}" "export" "${MY_SVC_FMRI}" > /dev/null 2>&1; then
"${MY_SVCCFG}" "delete" "${MY_SVC_FMRI}"
fi
"${MY_SVCCFG}" "import" "${MY_SVC_TMP}"
rm -f "${MY_SVC_TMP}"
return 0;
}
os_enable_service() {
"${MY_SVCADM}" "enable" "${MY_SVC_FMRI}"
return 0;
}
os_disable_service() {
if "${MY_SVCCFG}" "export" "${MY_SVC_FMRI}" > /dev/null 2>&1; then
"${MY_SVCADM}" "disable" "${MY_SVC_FMRI}"
sleep 1
fi
return 0;
}
os_add_user() {
useradd -m -s /usr/bin/bash -G staff "${TESTBOXSCRIPT_USER}"
passwd "${TESTBOXSCRIPT_USER}" # This sucker prompts, seemingly no way around that.
return 0;
}
maybe_hush_up_root_login() {
# We don't want /etc/profile to display /etc/motd, quotas and mail status
# every time we do sudo -i... It may screw up serious if we parse the
# output of the command we sudid.
> ~root/.hushlogin
return 0;
}
os_final_message() {
cat <<EOF
Additional things to do:"
1. Configure NTP:
a) echo "server wei01-time.de.oracle.com" > /etc/inet/ntp.conf
echo "driftfile /var/ntp/ntp.drift" >> /etc/inet/ntp.conf
b) Enable the service: svcadm enable ntp
c) Sync once in case of big diff: ntpdate wei01-time.de.oracle.com
d) Check that it works: ntpq -p
Enjoy!
EOF
}
|