[86276] | 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 | #
|
---|
[98103] | 9 | # Copyright (C) 2017-2023 Oracle and/or its affiliates.
|
---|
[86276] | 10 | #
|
---|
[96407] | 11 | # This file is part of VirtualBox base platform packages, as
|
---|
| 12 | # available from https://www.virtualbox.org.
|
---|
[86276] | 13 | #
|
---|
[96407] | 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 | #
|
---|
[86276] | 29 |
|
---|
| 30 |
|
---|
| 31 | #
|
---|
| 32 | # Globals.
|
---|
| 33 | #
|
---|
| 34 | MY_TARGET="/mnt/sysimage"
|
---|
| 35 | MY_LOGFILE="${MY_TARGET}/var/log/vboxpostinstall.log"
|
---|
| 36 | MY_CHROOT_CDROM="/cdrom"
|
---|
| 37 | MY_CDROM_NOCHROOT="/tmp/vboxcdrom"
|
---|
| 38 | MY_EXITCODE=0
|
---|
| 39 | MY_DEBUG="" # "yes"
|
---|
| 40 | GUEST_VERSION=@@VBOX_INSERT_GUEST_OS_VERSION@@
|
---|
| 41 | GUEST_MAJOR_VERSION=@@VBOX_INSERT_GUEST_OS_MAJOR_VERSION@@
|
---|
| 42 |
|
---|
| 43 | @@VBOX_COND_HAS_PROXY@@
|
---|
| 44 | PROXY="@@VBOX_INSERT_PROXY@@"
|
---|
| 45 | export http_proxy="${PROXY}"
|
---|
| 46 | export https_proxy="${PROXY}"
|
---|
| 47 | echo "HTTP proxy is ${http_proxy}" | tee -a "${MY_LOGFILE}"
|
---|
| 48 | echo "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 | #
|
---|
| 55 | if [ "$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" "$@"
|
---|
| 86 | fi
|
---|
| 87 |
|
---|
| 88 |
|
---|
| 89 | #
|
---|
| 90 | # Commands.
|
---|
| 91 | #
|
---|
| 92 |
|
---|
| 93 | # Logs execution of a command.
|
---|
| 94 | log_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.
|
---|
| 112 | log_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.
|
---|
| 118 | chroot_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 | #
|
---|
| 132 | echo "******************************************************************************" >> "${MY_LOGFILE}"
|
---|
| 133 | echo "** VirtualBox Unattended Guest Installation - Late installation actions" >> "${MY_LOGFILE}"
|
---|
| 134 | echo "** Date: `date -R`" >> "${MY_LOGFILE}"
|
---|
| 135 | echo "** Started: $0 $*" >> "${MY_LOGFILE}"
|
---|
| 136 |
|
---|
| 137 |
|
---|
| 138 | #
|
---|
| 139 | # We want the ISO available inside the target jail.
|
---|
| 140 | #
|
---|
| 141 | if [ -d "${MY_TARGET}${MY_CHROOT_CDROM}" ]; then
|
---|
| 142 | MY_RMDIR_TARGET_CDROM=
|
---|
| 143 | else
|
---|
| 144 | MY_RMDIR_TARGET_CDROM="yes"
|
---|
| 145 | log_command mkdir -p ${MY_TARGET}${MY_CHROOT_CDROM}
|
---|
| 146 | fi
|
---|
| 147 |
|
---|
| 148 | if [ -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}"
|
---|
| 151 | else
|
---|
| 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
|
---|
| 162 | fi
|
---|
| 163 |
|
---|
| 164 |
|
---|
| 165 | #
|
---|
| 166 | # Debug
|
---|
| 167 | #
|
---|
| 168 | if [ "${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
|
---|
| 179 | fi
|
---|
| 180 |
|
---|
| 181 |
|
---|
| 182 | #
|
---|
| 183 | # Add EPEL repository
|
---|
| 184 | #
|
---|
| 185 | EPEL_REPOSITORY="https://dl.fedoraproject.org/pub/epel/epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm"
|
---|
| 186 | log_command_in_target wget ${EPEL_REPOSITORY}
|
---|
[87895] | 187 | log_command_in_target yum localinstall -y "epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm"
|
---|
[86276] | 188 | log_command_in_target rpm -q "oraclelinux-release-el${GUEST_MAJOR_VERSION}"
|
---|
| 189 | log_command_in_target yum install -y yum-utils
|
---|
| 190 | log_command_in_target yum-config-manager --enable epel
|
---|
| 191 |
|
---|
| 192 |
|
---|
| 193 | #
|
---|
| 194 | # Packages needed for GAs.
|
---|
| 195 | #
|
---|
| 196 | echo "--------------------------------------------------" >> "${MY_LOGFILE}"
|
---|
| 197 | echo '** Finding UEK kernel...' | tee -a "${MY_LOGFILE}"
|
---|
| 198 | UEK=$(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}')
|
---|
| 200 | CURRENT_KERNEL=$(uname -r)
|
---|
| 201 |
|
---|
| 202 | if [ -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}"
|
---|
| 205 | fi
|
---|
| 206 | echo "Installation uses kernel ${CURRENT_KERNEL}" | tee -a "${MY_LOGFILE}"
|
---|
| 207 |
|
---|
| 208 | echo '** Installing packages for building kernel modules...' | tee -a "${MY_LOGFILE}"
|
---|
| 209 | log_command_in_target yum -y install "kernel-devel-$(uname -r)"
|
---|
| 210 | log_command_in_target yum -y install "kernel-headers-$(uname -r)"
|
---|
| 211 | log_command_in_target yum -y install gcc
|
---|
| 212 | log_command_in_target yum -y install binutils
|
---|
| 213 | log_command_in_target yum -y install make
|
---|
[93954] | 214 | @@VBOX_COND[${GUEST_OS_VERSION} vgt 8.0.0]@@
|
---|
[86276] | 215 | log_command_in_target yum -y install elfutils-libelf-devel
|
---|
[86659] | 216 | @@VBOX_COND_END@@
|
---|
[86276] | 217 | log_command_in_target yum -y install dkms
|
---|
| 218 | log_command_in_target yum -y install make
|
---|
| 219 | log_command_in_target yum -y install bzip2
|
---|
| 220 | log_command_in_target yum -y install perl
|
---|
| 221 |
|
---|
[87895] | 222 |
|
---|
[86276] | 223 | #
|
---|
[87895] | 224 | #Package cloud-init is needed for possible automation the initial setup of virtual machine
|
---|
| 225 | #
|
---|
| 226 | log_command_in_target yum -y install cloud-init
|
---|
| 227 | log_command_in_target systemctl enable cloud-init-local.service
|
---|
| 228 | log_command_in_target systemctl enable cloud-init.service
|
---|
| 229 | log_command_in_target systemctl enable cloud-config.service
|
---|
| 230 | log_command_in_target systemctl enable cloud-final.service
|
---|
| 231 |
|
---|
| 232 |
|
---|
| 233 | #
|
---|
[86276] | 234 | # GAs
|
---|
| 235 | #
|
---|
| 236 | @@VBOX_COND_IS_INSTALLING_ADDITIONS@@
|
---|
| 237 | echo "--------------------------------------------------" >> "${MY_LOGFILE}"
|
---|
| 238 | echo '** Installing VirtualBox Guest Additions...' | tee -a "${MY_LOGFILE}"
|
---|
| 239 | MY_IGNORE_EXITCODE=2 # returned if modules already loaded and reboot required.
|
---|
[101697] | 240 | log_command_in_target /bin/bash "${MY_CHROOT_CDROM}/vboxadditions/@@VBOX_INSERT_ADDITIONS_INSTALL_PACKAGE_NAME@@" --nox11
|
---|
[86276] | 241 | log_command_in_target /bin/bash -c "udevadm control --reload-rules" # GAs doesn't yet do this.
|
---|
| 242 | log_command_in_target /bin/bash -c "udevadm trigger" # (ditto)
|
---|
| 243 | MY_IGNORE_EXITCODE=
|
---|
| 244 | log_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@@
|
---|
| 252 | echo "--------------------------------------------------" >> "${MY_LOGFILE}"
|
---|
| 253 | echo '** Installing Test Execution Service...' | tee -a "${MY_LOGFILE}"
|
---|
| 254 | log_command_in_target test "${MY_CHROOT_CDROM}/vboxvalidationkit/linux/@@VBOX_INSERT_OS_ARCH@@/TestExecService"
|
---|
| 255 | log_command mkdir -p "${MY_TARGET}/opt/validationkit" "${MY_TARGET}/media/cdrom"
|
---|
| 256 | log_command cp -R ${MY_CDROM_NOCHROOT}/vboxvalidationkit/* "${MY_TARGET}/opt/validationkit/"
|
---|
| 257 | log_command chmod -R u+rw,a+xr "${MY_TARGET}/opt/validationkit/"
|
---|
| 258 | if [ -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=
|
---|
| 262 | fi
|
---|
| 263 |
|
---|
| 264 | # systemd service config:
|
---|
| 265 | MY_UNIT_PATH="${MY_TARGET}/lib/systemd/system"
|
---|
| 266 | test -d "${MY_TARGET}/usr/lib/systemd/system" && MY_UNIT_PATH="${MY_TARGET}/usr/lib/systemd/system"
|
---|
| 267 | if [ -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:
|
---|
| 273 | elif [ -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
|
---|
| 303 | else
|
---|
| 304 | echo "** error: Unknown init script system." | tee -a "${MY_LOGFILE}"
|
---|
| 305 | fi
|
---|
| 306 |
|
---|
| 307 | @@VBOX_COND_END@@
|
---|
| 308 |
|
---|
| 309 |
|
---|
| 310 | #
|
---|
| 311 | # Run user command.
|
---|
| 312 | #
|
---|
| 313 | @@VBOX_COND_HAS_POST_INSTALL_COMMAND@@
|
---|
| 314 | echo '** Running custom user command ...' | tee -a "${MY_LOGFILE}"
|
---|
| 315 | log_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 | #
|
---|
| 322 | if [ -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}"
|
---|
| 325 | fi
|
---|
| 326 |
|
---|
| 327 | if [ -n "${MY_RMDIR_TARGET_CDROM}" ]; then
|
---|
| 328 | log_command rmdir "${MY_TARGET}${MY_CHROOT_CDROM}"
|
---|
| 329 | fi
|
---|
| 330 |
|
---|
| 331 |
|
---|
| 332 | #
|
---|
| 333 | # Log footer.
|
---|
| 334 | #
|
---|
| 335 | echo "******************************************************************************" >> "${MY_LOGFILE}"
|
---|
| 336 | echo "** Date: `date -R`" >> "${MY_LOGFILE}"
|
---|
| 337 | echo "** Final exit code: ${MY_EXITCODE}" >> "${MY_LOGFILE}"
|
---|
| 338 | echo "******************************************************************************" >> "${MY_LOGFILE}"
|
---|
| 339 |
|
---|
| 340 | exit ${MY_EXITCODE}
|
---|