VirtualBox

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

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 11.4 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 yum install -y yum-utils
189log_command_in_target yum-config-manager --enable epel
190
191
192#
193# Packages needed for GAs.
194#
195echo "--------------------------------------------------" >> "${MY_LOGFILE}"
196echo '** Installing packages for building kernel modules...' | tee -a "${MY_LOGFILE}"
197log_command_in_target yum -y install "kernel-devel-$(uname -r)"
198log_command_in_target yum -y install "kernel-headers-$(uname -r)"
199log_command_in_target yum -y install gcc
200log_command_in_target yum -y install binutils
201log_command_in_target yum -y install make
202@@VBOX_COND[${GUEST_OS_VERSION} vgt 8.0.0]@@
203log_command_in_target yum -y install elfutils-libelf-devel
204@@VBOX_COND_END@@
205log_command_in_target yum -y install dkms
206log_command_in_target yum -y install make
207log_command_in_target yum -y install bzip2
208log_command_in_target yum -y install perl
209
210
211#
212#Package cloud-init is needed for possible automation the initial setup of virtual machine
213#
214log_command_in_target yum -y install cloud-init
215log_command_in_target systemctl enable cloud-init-local.service
216log_command_in_target systemctl enable cloud-init.service
217log_command_in_target systemctl enable cloud-config.service
218log_command_in_target systemctl enable cloud-final.service
219
220
221#
222# GAs
223#
224@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
225echo "--------------------------------------------------" >> "${MY_LOGFILE}"
226echo '** Installing VirtualBox Guest Additions...' | tee -a "${MY_LOGFILE}"
227MY_IGNORE_EXITCODE=2 # returned if modules already loaded and reboot required.
228log_command_in_target /bin/bash "${MY_CHROOT_CDROM}/vboxadditions/VBoxLinuxAdditions.run" --nox11
229log_command_in_target /bin/bash -c "udevadm control --reload-rules" # GAs doesn't yet do this.
230log_command_in_target /bin/bash -c "udevadm trigger" # (ditto)
231MY_IGNORE_EXITCODE=
232log_command_in_target usermod -a -G vboxsf "@@VBOX_INSERT_USER_LOGIN@@"
233@@VBOX_COND_END@@
234
235
236#
237# Test Execution Service.
238#
239@@VBOX_COND_IS_INSTALLING_TEST_EXEC_SERVICE@@
240echo "--------------------------------------------------" >> "${MY_LOGFILE}"
241echo '** Installing Test Execution Service...' | tee -a "${MY_LOGFILE}"
242log_command_in_target test "${MY_CHROOT_CDROM}/vboxvalidationkit/linux/@@VBOX_INSERT_OS_ARCH@@/TestExecService"
243log_command mkdir -p "${MY_TARGET}/opt/validationkit" "${MY_TARGET}/media/cdrom"
244log_command cp -R ${MY_CDROM_NOCHROOT}/vboxvalidationkit/* "${MY_TARGET}/opt/validationkit/"
245log_command chmod -R u+rw,a+xr "${MY_TARGET}/opt/validationkit/"
246if [ -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
247 MY_IGNORE_EXITCODE=1
248 log_command_in_target chcon -R -t usr_t "/opt/validationkit/"
249 MY_IGNORE_EXITCODE=
250fi
251
252# systemd service config:
253MY_UNIT_PATH="${MY_TARGET}/lib/systemd/system"
254test -d "${MY_TARGET}/usr/lib/systemd/system" && MY_UNIT_PATH="${MY_TARGET}/usr/lib/systemd/system"
255if [ -d "${MY_UNIT_PATH}" ]; then
256 log_command cp "${MY_TARGET}/opt/validationkit/linux/vboxtxs.service" "${MY_UNIT_PATH}/vboxtxs.service"
257 log_command chmod 644 "${MY_UNIT_PATH}/vboxtxs.service"
258 log_command_in_target systemctl -q enable vboxtxs
259
260# System V like:
261elif [ -e "${MY_TARGET}/etc/init.d/" ]; then
262
263 # Install the script. On rhel6 scripts are under /etc/rc.d/ with /etc/init.d and /etc/rc?.d being symlinks.
264 if [ -d "${MY_TARGET}/etc/rc.d/init.d/" ]; then
265 MY_INIT_D_PARENT_PATH="${MY_TARGET}/etc/rc.d"
266 log_command ln -s "../../../opt/validationkit/linux/vboxtxs" "${MY_INIT_D_PARENT_PATH}/init.d/"
267 else
268 MY_INIT_D_PARENT_PATH="${MY_TARGET}/etc"
269 log_command ln -s "../../opt/validationkit/linux/vboxtxs" "${MY_INIT_D_PARENT_PATH}/init.d/"
270 fi
271
272 # Use runlevel management script if found.
273 if chroot_which chkconfig; then # Redhat based sysvinit systems
274 log_command_in_target chkconfig --add vboxtxs
275 elif chroot_which insserv; then # SUSE-based sysvinit systems
276 log_command_in_target insserv vboxtxs
277 elif chroot_which update-rc.d; then # Debian/Ubuntu-based systems
278 log_command_in_target update-rc.d vboxtxs defaults
279 elif chroot_which rc-update; then # Gentoo Linux
280 log_command_in_target rc-update add vboxtxs default
281 # Fall back on hardcoded symlinking.
282 else
283 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc0.d/K65vboxtxs"
284 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc1.d/K65vboxtxs"
285 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc6.d/K65vboxtxs"
286 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc2.d/S35vboxtxs"
287 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc3.d/S35vboxtxs"
288 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc4.d/S35vboxtxs"
289 log_command ln -s "../init.d/vboxtxs" "${MY_INIT_D_PARENT_PATH}/rc5.d/S35vboxtxs"
290 fi
291else
292 echo "** error: Unknown init script system." | tee -a "${MY_LOGFILE}"
293fi
294
295@@VBOX_COND_END@@
296
297
298#
299# Run user command.
300#
301@@VBOX_COND_HAS_POST_INSTALL_COMMAND@@
302echo '** Running custom user command ...' | tee -a "${MY_LOGFILE}"
303log_command @@VBOX_INSERT_POST_INSTALL_COMMAND@@
304@@VBOX_COND_END@@
305
306
307#
308# Unmount the cdrom if we bound it and clean up the chroot if we set it up.
309#
310if [ -n "${MY_UNMOUNT_TARGET_CDROM}" ]; then
311 echo "** unbinding cdrom from jail..." | tee -a "${MY_LOGFILE}"
312 log_command umount "${MY_TARGET}${MY_CHROOT_CDROM}"
313fi
314
315if [ -n "${MY_RMDIR_TARGET_CDROM}" ]; then
316 log_command rmdir "${MY_TARGET}${MY_CHROOT_CDROM}"
317fi
318
319
320#
321# Log footer.
322#
323echo "******************************************************************************" >> "${MY_LOGFILE}"
324echo "** Date: `date -R`" >> "${MY_LOGFILE}"
325echo "** Final exit code: ${MY_EXITCODE}" >> "${MY_LOGFILE}"
326echo "******************************************************************************" >> "${MY_LOGFILE}"
327
328exit ${MY_EXITCODE}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use