VirtualBox

source: vbox/trunk/src/VBox/Main/UnattendedTemplates/ol_postinstall.sh

Last change on this file was 101697, checked in by vboxsync, 6 months ago

Main/Unattended: Support OracleLinux for unattended installation, bugref:10516

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 12.0 KB
Line 
1#!/bin/bash
2## @file
3# Post installation script template for redhat- distros.
4#
5# Note! This script expects to be running chrooted (inside new sytem).
6#
7
8#
9# Copyright (C) 2017-2023 Oracle and/or its affiliates.
10#
11# This file is part of VirtualBox base platform packages, as
12# available from https://www.virtualbox.org.
13#
14# This program is free software; you can redistribute it and/or
15# modify it under the terms of the GNU General Public License
16# as published by the Free Software Foundation, in version 3 of the
17# License.
18#
19# This program is distributed in the hope that it will be useful, but
20# WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22# General Public License for more details.
23#
24# You should have received a copy of the GNU General Public License
25# along with this program; if not, see <https://www.gnu.org/licenses>.
26#
27# SPDX-License-Identifier: GPL-3.0-only
28#
29
30
31#
32# Globals.
33#
34MY_TARGET="/mnt/sysimage"
35MY_LOGFILE="${MY_TARGET}/var/log/vboxpostinstall.log"
36MY_CHROOT_CDROM="/cdrom"
37MY_CDROM_NOCHROOT="/tmp/vboxcdrom"
38MY_EXITCODE=0
39MY_DEBUG="" # "yes"
40GUEST_VERSION=@@VBOX_INSERT_GUEST_OS_VERSION@@
41GUEST_MAJOR_VERSION=@@VBOX_INSERT_GUEST_OS_MAJOR_VERSION@@
42
43@@VBOX_COND_HAS_PROXY@@
44PROXY="@@VBOX_INSERT_PROXY@@"
45export http_proxy="${PROXY}"
46export https_proxy="${PROXY}"
47echo "HTTP proxy is ${http_proxy}" | tee -a "${MY_LOGFILE}"
48echo "HTTPS proxy is ${https_proxy}" | tee -a "${MY_LOGFILE}"
49@@VBOX_COND_END@@
50
51#
52# Do we need to exec using target bash? If so, we must do that early
53# or ash will bark 'bad substitution' and fail.
54#
55if [ "$1" = "--need-target-bash" ]; then
56 # Try figure out which directories we might need in the library path.
57 if [ -z "${LD_LIBRARY_PATH}" ]; then
58 LD_LIBRARY_PATH="${MY_TARGET}/lib"
59 fi
60 for x in \
61 ${MY_TARGET}/lib \
62 ${MY_TARGET}/usr/lib \
63 ${MY_TARGET}/lib/*linux-gnu/ \
64 ${MY_TARGET}/lib32/ \
65 ${MY_TARGET}/lib64/ \
66 ${MY_TARGET}/usr/lib/*linux-gnu/ \
67 ${MY_TARGET}/usr/lib32/ \
68 ${MY_TARGET}/usr/lib64/ \
69 ;
70 do
71 if [ -e "$x" ]; then LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${x}"; fi;
72 done
73 export LD_LIBRARY_PATH
74
75 # Append target bin directories to the PATH as busybox may not have tee.
76 PATH="${PATH}:${MY_TARGET}/bin:${MY_TARGET}/usr/bin:${MY_TARGET}/sbin:${MY_TARGET}/usr/sbin"
77 export PATH
78
79 # Drop the --need-target-bash argument and re-exec.
80 shift
81 echo "******************************************************************************" >> "${MY_LOGFILE}"
82 echo "** Relaunching using ${MY_TARGET}/bin/bash $0 $*" >> "${MY_LOGFILE}"
83 echo "** LD_LIBRARY_PATH=${LD_LIBRARY_PATH}" >> "${MY_LOGFILE}"
84 echo "** PATH=${PATH}" >> "${MY_LOGFILE}"
85 exec "${MY_TARGET}/bin/bash" "$0" "$@"
86fi
87
88
89#
90# Commands.
91#
92
93# Logs execution of a command.
94log_command()
95{
96 echo "--------------------------------------------------" >> "${MY_LOGFILE}"
97 echo "** Date: `date -R`" >> "${MY_LOGFILE}"
98 echo "** Executing: $*" >> "${MY_LOGFILE}"
99 "$@" 2>&1 | tee -a "${MY_LOGFILE}"
100 MY_TMP_EXITCODE="${PIPESTATUS[0]}" # bashism - whatever.
101 if [ "${MY_TMP_EXITCODE}" != "0" ]; then
102 if [ "${MY_TMP_EXITCODE}" != "${MY_IGNORE_EXITCODE}" ]; then
103 echo "** exit code: ${MY_TMP_EXITCODE}" | tee -a "${MY_LOGFILE}"
104 MY_EXITCODE=1;
105 else
106 echo "** exit code: ${MY_TMP_EXITCODE} (ignored)" | tee -a "${MY_LOGFILE}"
107 fi
108 fi
109}
110
111# Logs execution of a command inside the target.
112log_command_in_target()
113{
114 log_command chroot "${MY_TARGET}" "$@"
115}
116
117# Checks if $1 is a command on the PATH inside the target jail.
118chroot_which()
119{
120 for dir in /bin /usr/bin /sbin /usr/sbin;
121 do
122 if [ -x "${MY_TARGET}${dir}/$1" ]; then
123 return 0;
124 fi
125 done
126 return 1;
127}
128
129#
130# Log header.
131#
132echo "******************************************************************************" >> "${MY_LOGFILE}"
133echo "** VirtualBox Unattended Guest Installation - Late installation actions" >> "${MY_LOGFILE}"
134echo "** Date: `date -R`" >> "${MY_LOGFILE}"
135echo "** Started: $0 $*" >> "${MY_LOGFILE}"
136
137
138#
139# We want the ISO available inside the target jail.
140#
141if [ -d "${MY_TARGET}${MY_CHROOT_CDROM}" ]; then
142 MY_RMDIR_TARGET_CDROM=
143else
144 MY_RMDIR_TARGET_CDROM="yes"
145 log_command mkdir -p ${MY_TARGET}${MY_CHROOT_CDROM}
146fi
147
148if [ -f "${MY_TARGET}${MY_CHROOT_CDROM}/vboxpostinstall.sh" ]; then
149 MY_UNMOUNT_TARGET_CDROM=
150 echo "** binding cdrom into jail: already done" | tee -a "${MY_LOGFILE}"
151else
152 MY_UNMOUNT_TARGET_CDROM="yes"
153 log_command mount -o bind "${MY_CDROM_NOCHROOT}" "${MY_TARGET}${MY_CHROOT_CDROM}"
154 if [ -f "${MY_TARGET}${MY_CHROOT_CDROM}/vboxpostinstall.sh" ]; then
155 echo "** binding cdrom into jail: success" | tee -a "${MY_LOGFILE}"
156 else
157 echo "** binding cdrom into jail: failed" | tee -a "${MY_LOGFILE}"
158 fi
159 if [ "${MY_DEBUG}" = "yes" ]; then
160 log_command find "${MY_TARGET}${MY_CHROOT_CDROM}"
161 fi
162fi
163
164
165#
166# Debug
167#
168if [ "${MY_DEBUG}" = "yes" ]; then
169 log_command id
170 log_command ps
171 log_command ps auxwwwf
172 log_command env
173 log_command df
174 log_command mount
175 log_command_in_target df
176 log_command_in_target mount
177 #log_command find /
178 MY_EXITCODE=0
179fi
180
181
182#
183# Add EPEL repository
184#
185EPEL_REPOSITORY="https://dl.fedoraproject.org/pub/epel/epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm"
186log_command_in_target wget ${EPEL_REPOSITORY}
187log_command_in_target yum localinstall -y "epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm"
188log_command_in_target rpm -q "oraclelinux-release-el${GUEST_MAJOR_VERSION}"
189log_command_in_target yum install -y yum-utils
190log_command_in_target yum-config-manager --enable epel
191
192
193#
194# Packages needed for GAs.
195#
196echo "--------------------------------------------------" >> "${MY_LOGFILE}"
197echo '** Finding UEK kernel...' | tee -a "${MY_LOGFILE}"
198UEK=$(find ${MY_TARGET}/boot/ -name "vmlinuz*"| grep uek | awk -F"-" 'BEGIN{OFS="-"} \
199{ kernel=$2; for (i = 3; i <= NF; i++) { kernel=sprintf("%s-%s",kernel,$i)}} END{print kernel}')
200CURRENT_KERNEL=$(uname -r)
201
202if [ -n $UEK ]; then
203 echo "UEK kernel was found - ${UEK}" | tee -a "${MY_LOGFILE}"
204 log_command_in_target yum -y install "kernel-uek-devel-${UEK}"
205fi
206echo "Installation uses kernel ${CURRENT_KERNEL}" | tee -a "${MY_LOGFILE}"
207
208echo '** Installing packages for building kernel modules...' | tee -a "${MY_LOGFILE}"
209log_command_in_target yum -y install "kernel-devel-$(uname -r)"
210log_command_in_target yum -y install "kernel-headers-$(uname -r)"
211log_command_in_target yum -y install gcc
212log_command_in_target yum -y install binutils
213log_command_in_target yum -y install make
214@@VBOX_COND[${GUEST_OS_VERSION} vgt 8.0.0]@@
215log_command_in_target yum -y install elfutils-libelf-devel
216@@VBOX_COND_END@@
217log_command_in_target yum -y install dkms
218log_command_in_target yum -y install make
219log_command_in_target yum -y install bzip2
220log_command_in_target yum -y install perl
221
222
223#
224#Package cloud-init is needed for possible automation the initial setup of virtual machine
225#
226log_command_in_target yum -y install cloud-init
227log_command_in_target systemctl enable cloud-init-local.service
228log_command_in_target systemctl enable cloud-init.service
229log_command_in_target systemctl enable cloud-config.service
230log_command_in_target systemctl enable cloud-final.service
231
232
233#
234# GAs
235#
236@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
237echo "--------------------------------------------------" >> "${MY_LOGFILE}"
238echo '** Installing VirtualBox Guest Additions...' | tee -a "${MY_LOGFILE}"
239MY_IGNORE_EXITCODE=2 # returned if modules already loaded and reboot required.
240log_command_in_target /bin/bash "${MY_CHROOT_CDROM}/vboxadditions/@@VBOX_INSERT_ADDITIONS_INSTALL_PACKAGE_NAME@@" --nox11
241log_command_in_target /bin/bash -c "udevadm control --reload-rules" # GAs doesn't yet do this.
242log_command_in_target /bin/bash -c "udevadm trigger" # (ditto)
243MY_IGNORE_EXITCODE=
244log_command_in_target usermod -a -G vboxsf "@@VBOX_INSERT_USER_LOGIN@@"
245@@VBOX_COND_END@@
246
247
248#
249# Test Execution Service.
250#
251@@VBOX_COND_IS_INSTALLING_TEST_EXEC_SERVICE@@
252echo "--------------------------------------------------" >> "${MY_LOGFILE}"
253echo '** Installing Test Execution Service...' | tee -a "${MY_LOGFILE}"
254log_command_in_target test "${MY_CHROOT_CDROM}/vboxvalidationkit/linux/@@VBOX_INSERT_OS_ARCH@@/TestExecService"
255log_command mkdir -p "${MY_TARGET}/opt/validationkit" "${MY_TARGET}/media/cdrom"
256log_command cp -R ${MY_CDROM_NOCHROOT}/vboxvalidationkit/* "${MY_TARGET}/opt/validationkit/"
257log_command chmod -R u+rw,a+xr "${MY_TARGET}/opt/validationkit/"
258if [ -e "${MY_TARGET}/usr/bin/chcon" -o -e "${MY_TARGET}/bin/chcon" -o -e "${MY_TARGET}/usr/sbin/chcon" -o -e "${MY_TARGET}/sbin/chcon" ]; then
259 MY_IGNORE_EXITCODE=1
260 log_command_in_target chcon -R -t usr_t "/opt/validationkit/"
261 MY_IGNORE_EXITCODE=
262fi
263
264# systemd service config:
265MY_UNIT_PATH="${MY_TARGET}/lib/systemd/system"
266test -d "${MY_TARGET}/usr/lib/systemd/system" && MY_UNIT_PATH="${MY_TARGET}/usr/lib/systemd/system"
267if [ -d "${MY_UNIT_PATH}" ]; then
268 log_command cp "${MY_TARGET}/opt/validationkit/linux/vboxtxs.service" "${MY_UNIT_PATH}/vboxtxs.service"
269 log_command chmod 644 "${MY_UNIT_PATH}/vboxtxs.service"
270 log_command_in_target systemctl -q enable vboxtxs
271
272# System V like:
273elif [ -e "${MY_TARGET}/etc/init.d/" ]; then
274
275 # Install the script. On rhel6 scripts are under /etc/rc.d/ with /etc/init.d and /etc/rc?.d being symlinks.
276 if [ -d "${MY_TARGET}/etc/rc.d/init.d/" ]; then
277 MY_INIT_D_PARENT_PATH="${MY_TARGET}/etc/rc.d"
278 log_command ln -s "../../../opt/validationkit/linux/vboxtxs" "${MY_INIT_D_PARENT_PATH}/init.d/"
279 else
280 MY_INIT_D_PARENT_PATH="${MY_TARGET}/etc"
281 log_command ln -s "../../opt/validationkit/linux/vboxtxs" "${MY_INIT_D_PARENT_PATH}/init.d/"
282 fi
283
284 # Use runlevel management script if found.
285 if chroot_which chkconfig; then # Redhat based sysvinit systems
286 log_command_in_target chkconfig --add vboxtxs
287 elif chroot_which insserv; then # SUSE-based sysvinit systems
288 log_command_in_target insserv vboxtxs
289 elif chroot_which update-rc.d; then # Debian/Ubuntu-based systems
290 log_command_in_target update-rc.d vboxtxs defaults
291 elif chroot_which rc-update; then # Gentoo Linux
292 log_command_in_target rc-update add vboxtxs default
293 # Fall back on hardcoded symlinking.
294 else
295 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc0.d/K65vboxtxs"
296 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc1.d/K65vboxtxs"
297 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc6.d/K65vboxtxs"
298 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc2.d/S35vboxtxs"
299 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc3.d/S35vboxtxs"
300 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc4.d/S35vboxtxs"
301 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc5.d/S35vboxtxs"
302 fi
303else
304 echo "** error: Unknown init script system." | tee -a "${MY_LOGFILE}"
305fi
306
307@@VBOX_COND_END@@
308
309
310#
311# Run user command.
312#
313@@VBOX_COND_HAS_POST_INSTALL_COMMAND@@
314echo '** Running custom user command ...' | tee -a "${MY_LOGFILE}"
315log_command @@VBOX_INSERT_POST_INSTALL_COMMAND@@
316@@VBOX_COND_END@@
317
318
319#
320# Unmount the cdrom if we bound it and clean up the chroot if we set it up.
321#
322if [ -n "${MY_UNMOUNT_TARGET_CDROM}" ]; then
323 echo "** unbinding cdrom from jail..." | tee -a "${MY_LOGFILE}"
324 log_command umount "${MY_TARGET}${MY_CHROOT_CDROM}"
325fi
326
327if [ -n "${MY_RMDIR_TARGET_CDROM}" ]; then
328 log_command rmdir "${MY_TARGET}${MY_CHROOT_CDROM}"
329fi
330
331
332#
333# Log footer.
334#
335echo "******************************************************************************" >> "${MY_LOGFILE}"
336echo "** Date: `date -R`" >> "${MY_LOGFILE}"
337echo "** Final exit code: ${MY_EXITCODE}" >> "${MY_LOGFILE}"
338echo "******************************************************************************" >> "${MY_LOGFILE}"
339
340exit ${MY_EXITCODE}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use