#!/bin/sh # This script was generated using Makeself 2.1.5 CRCsum="3470172510" MD5="f488dbbebacec461f763c9d47d75ace6" TMPROOT=${TMPDIR:=/tmp} label="VirtualBox for Linux installation" script="./install.sh" scriptargs="$0 1> /dev/null" targetdir="install" filesizes="49838080" keep=n print_cmd_arg="" if type printf > /dev/null; then print_cmd="printf" elif test -x /usr/ucb/echo; then print_cmd="/usr/ucb/echo" else print_cmd="echo" fi unset CDPATH MS_Printf() { $print_cmd $print_cmd_arg "$1" } MS_Progress() { while read a; do MS_Printf . done } MS_diskspace() { ( if test -d /usr/xpg4/bin; then PATH=/usr/xpg4/bin:$PATH fi df -kP "$1" | tail -1 | awk '{print $4}' ) } MS_dd() { blocks=`expr $3 / 1024` bytes=`expr $3 % 1024` dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \ { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \ test $bytes -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null } MS_Help() { cat << EOH >&2 Makeself version 2.1.5 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --lsm Print embedded lsm entry (or no LSM) $0 --list Print the list of files in the archive $0 --check Checks integrity of the archive 2) Running $0 : $0 [options] [--] [additional arguments to embedded script] with following options (in that order) --confirm Ask before running embedded script --noexec Do not run embedded script --keep Do not erase target directory after running the embedded script --nox11 Do not spawn an xterm --nochown Do not give the extracted files to the current user --target NewDirectory Extract in NewDirectory --tar arg1 [arg2 ...] Access the contents of the archive through the tar command -- Following arguments will be passed to the embedded script EOH } MS_Check() { OLD_PATH="$PATH" PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"} MD5_ARG="" MD5_PATH=`exec <&- 2>&-; which md5sum || type md5sum` test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which md5 || type md5` test -x "$MD5_PATH" || MD5_PATH=`exec <&- 2>&-; which digest || type digest` PATH="$OLD_PATH" MS_Printf "Verifying archive integrity..." offset=`head -n 404 "$1" | wc -c | tr -d " "` verb=$2 i=1 for s in $filesizes do crc=`echo $CRCsum | cut -d" " -f$i` if test -x "$MD5_PATH"; then if test `basename $MD5_PATH` = digest; then MD5_ARG="-a md5" fi md5=`echo $MD5 | cut -d" " -f$i` if test $md5 = "00000000000000000000000000000000"; then test x$verb = xy && echo " $1 does not contain an embedded MD5 checksum." >&2 else md5sum=`MS_dd "$1" $offset $s | eval "$MD5_PATH $MD5_ARG" | cut -b-32`; if test "$md5sum" != "$md5"; then echo "Error in MD5 checksums: $md5sum is different from $md5" >&2 exit 2 else test x$verb = xy && MS_Printf " MD5 checksums are OK." >&2 fi crc="0000000000"; verb=n fi fi if test $crc = "0000000000"; then test x$verb = xy && echo " $1 does not contain a CRC checksum." >&2 else sum1=`MS_dd "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'` if test "$sum1" = "$crc"; then test x$verb = xy && MS_Printf " CRC checksums are OK." >&2 else echo "Error in checksums: $sum1 is different from $crc" exit 2; fi fi i=`expr $i + 1` offset=`expr $offset + $s` done echo " All good." } UnTAR() { tar $1vf - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 $$; } } finish=true xterm_loop= nox11=n copy=none ownership=y verbose=n initargs="$@" while true do case "$1" in -h | --help) MS_Help exit 0 ;; --info) echo Identification: "$label" echo Target directory: "$targetdir" echo Uncompressed size: 48732 KB echo Compression: none echo Date of packaging: Tue Aug 4 19:44:24 CEST 2009 echo Built with Makeself version 2.1.5 on linux-gnu echo Build command was: "/home/vbox/tinderbox/3.0-lnx64-rel/tools/common/makeself/v2.1.5/makeself.sh \\ \"--follow\" \\ \"--nocomp\" \\ \"/home/vbox/tinderbox/3.0-lnx64-rel/out/linux.amd64/release/obj/Installer/linux/install\" \\ \"/home/vbox/tinderbox/3.0-lnx64-rel/out/linux.amd64/release/bin/VirtualBox-3.0.4-r50677.run\" \\ \"VirtualBox for Linux installation\" \\ \"./install.sh\" \\ \"$0 1> /dev/null\"" if test x$script != x; then echo Script run after extraction: echo " " $script $scriptargs fi if test x"" = xcopy; then echo "Archive will copy itself to a temporary location" fi if test x"n" = xy; then echo "directory $targetdir is permanent" else echo "$targetdir will be removed after extraction" fi exit 0 ;; --dumpconf) echo LABEL=\"$label\" echo SCRIPT=\"$script\" echo SCRIPTARGS=\"$scriptargs\" echo archdirname=\"install\" echo KEEP=n echo COMPRESS=none echo filesizes=\"$filesizes\" echo CRCsum=\"$CRCsum\" echo MD5sum=\"$MD5\" echo OLDUSIZE=48732 echo OLDSKIP=405 exit 0 ;; --lsm) cat << EOLSM No LSM. EOLSM exit 0 ;; --list) echo Target directory: $targetdir offset=`head -n 404 "$0" | wc -c | tr -d " "` for s in $filesizes do MS_dd "$0" $offset $s | eval "cat" | UnTAR t offset=`expr $offset + $s` done exit 0 ;; --tar) offset=`head -n 404 "$0" | wc -c | tr -d " "` arg1="$2" shift 2 for s in $filesizes do MS_dd "$0" $offset $s | eval "cat" | tar "$arg1" - $* offset=`expr $offset + $s` done exit 0 ;; --check) MS_Check "$0" y exit 0 ;; --confirm) verbose=y shift ;; --noexec) script="" shift ;; --keep) keep=y shift ;; --target) keep=y targetdir=${2:-.} shift 2 ;; --nox11) nox11=y shift ;; --nochown) ownership=n shift ;; --xwin) finish="echo Press Return to close this window...; read junk" xterm_loop=1 shift ;; --phase2) copy=phase2 shift ;; --) shift break ;; -*) echo Unrecognized flag : "$1" >&2 MS_Help exit 1 ;; *) break ;; esac done case "$copy" in copy) tmpdir=$TMPROOT/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$ mkdir "$tmpdir" || { echo "Could not create temporary directory $tmpdir" >&2 exit 1 } SCRIPT_COPY="$tmpdir/makeself" echo "Copying to a temporary location..." >&2 cp "$0" "$SCRIPT_COPY" chmod +x "$SCRIPT_COPY" cd "$TMPROOT" exec "$SCRIPT_COPY" --phase2 -- $initargs ;; phase2) finish="$finish ; rm -rf `dirname $0`" ;; esac if test "$nox11" = "n"; then if tty -s; then # Do we have a terminal? : else if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then # No, but do we have X? if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable GUESS_XTERMS="xterm rxvt dtterm eterm Eterm kvt konsole aterm" for a in $GUESS_XTERMS; do if type $a >/dev/null 2>&1; then XTERM=$a break fi done chmod a+x $0 || echo Please add execution rights on $0 if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal! exec $XTERM -title "$label" -e "$0" --xwin "$initargs" else exec $XTERM -title "$label" -e "./$0" --xwin "$initargs" fi fi fi fi fi if test "$targetdir" = "."; then tmpdir="." else if test "$keep" = y; then echo "Creating directory $targetdir" >&2 tmpdir="$targetdir" dashp="-p" else tmpdir="$TMPROOT/selfgz$$$RANDOM" dashp="" fi mkdir $dashp $tmpdir || { echo 'Cannot create target directory' $tmpdir >&2 echo 'You should try option --target OtherDirectory' >&2 eval $finish exit 1 } fi location="`pwd`" if test x$SETUP_NOCHECK != x1; then MS_Check "$0" fi offset=`head -n 404 "$0" | wc -c | tr -d " "` if test x"$verbose" = xy; then MS_Printf "About to extract 48732 KB in $tmpdir ... Proceed ? [Y/n] " read yn if test x"$yn" = xn; then eval $finish; exit 1 fi fi MS_Printf "Uncompressing $label" res=3 if test "$keep" = n; then trap 'echo Signal caught, cleaning up >&2; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 3 15 fi leftspace=`MS_diskspace $tmpdir` if test $leftspace -lt 48732; then echo echo "Not enough space left in "`dirname $tmpdir`" ($leftspace KB) to decompress $0 (48732 KB)" >&2 if test "$keep" = n; then echo "Consider setting TMPDIR to a directory with more free space." fi eval $finish; exit 1 fi for s in $filesizes do if MS_dd "$0" $offset $s | eval "cat" | ( cd "$tmpdir"; UnTAR x ) | MS_Progress; then if test x"$ownership" = xy; then (PATH=/usr/xpg4/bin:$PATH; cd "$tmpdir"; chown -R `id -u` .; chgrp -R `id -g` .) fi else echo echo "Unable to decompress $0" >&2 eval $finish; exit 1 fi offset=`expr $offset + $s` done echo cd "$tmpdir" res=0 if test x"$script" != x; then if test x"$verbose" = xy; then MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] " read yn if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then eval $script $scriptargs $*; res=$?; fi else eval $script $scriptargs $*; res=$? fi if test $res -ne 0; then test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2 fi fi if test "$keep" = n; then cd $TMPROOT /bin/rm -rf $tmpdir fi eval $finish; exit $res ./ 0000755 0001750 0001750 00000000000 11236071570 007733 5 ustar vbox vbox ./LICENSE 0000644 0001750 0001750 00000021725 11236071567 010755 0 ustar vbox vbox VirtualBox Personal Use and Evaluation License (PUEL) License version 7, September 10, 2008 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE PRODUCT (AS DEFINED IN 1 BELOW) TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS VIRTUALBOX PERSONAL USE AND EVALUATION LICENSE AGREEMENT ("AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS PRODUCT, YOU ACCEPT THE FULL TERMS OF THIS AGREEMENT. IF YOU ARE AGREEING TO THIS LICENSE ON BEHALF OF AN ENTITY OTHER THAN AN INDIVIDUAL PERSON, YOU REPRESENT THAT YOU ARE BINDING AND HAVE THE RIGHT TO BIND THE ENTITY TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. 1 SUBJECT OF AGREEMENT. "Product", as referred to in this Agreement, shall be the binary software package "Sun VirtualBox," which Product allows for creating multiple virtual computers, each with different operating systems ("Guest Computers"), on a physical computer with a specific operating system ("Host Computer"), to allow for installing and executing these Guest Computers simultaneously. The Product consists of executable files in machine code for the Solaris, Windows, Linux, and MacOSX operating systems as well as other data files as required by the executable files at run-time and documentation in electronic form. The Product includes all documentation and updates provided to You by Sun under this Agreement and the terms of this Agreement will apply to all such documentation and updates unless a different license is provided with an update or documentation. 2 GRANT OF LICENSE. (1) Sun grants you a personal, non-exclusive, non-transferable, limited license without fees to reproduce, install, execute, and use internally the Product a Host Computer for your Personal Use, Educational Use, or Evaluation. "Personal Use" requires that you use the Product on the same Host Computer where you installed it yourself and that no more than one client connect to that Host Computer at a time for the purpose of displaying Guest Computers remotely. "Educational use" is any use in an academic institution (schools, colleges and universities, by teachers and students). "Evaluation" means testing the Product for a reasonable period (that is, normally for a few weeks); after expiry of that term, you are no longer permitted to evaluate the Product. (2) The "VirtualBox Guest Additions" are a set of drivers and utilities that are shipped as a subset of the Product for the purpose of being installed inside a Guest Computer to improve its performance and cooperation with the rest of the Product. In addition to and independent of the rights granted by subsection 1, Sun allows you to install, execute, copy and redistribute a) unmodified copies of the ISO installation medium of the VirtualBox Guest Additions as shipped with the Product and b) the VirtualBox Guest Additions together with the Guest Computer into which they have been installed. 3 RESTRICTIONS AND RESERVATION OF RIGHTS. (1) Any use beyond the provisions of 2 is prohibited. The Product and copies thereof provided to you under this Agreement are copyrighted and licensed, not sold, to you by Sun. Sun reserves all copyrights and other intellectual property rights. This includes, but is not limited to, the right to modify, make available or public, rent out, lease, lend or otherwise distribute the Product. This does not apply as far as applicable law may require otherwise or if Sun grants you additional rights of use in a separate agreement in writing. (2) You may not do any of the following: (a) modify the Product. However if the documentation accompanying Product lists specific portions of Product, such as header files, class libraries, reference source code, and/or redistributable files, that may be handled differently, you may do so only as provided in the documentation; (b) rent, lease, lend or encumber the Product; (c) remove or alter any proprietary legends or notices contained in the Product; or (d) decompile, or reverse engineer the Product (unless enforcement of this restrictions is prohibited by applicable law). (3) The Product is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility and Sun and its licensors disclaim any express or implied warranty of fitness for such uses. (4) No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. 4 TERMINATION. The Agreement is effective on the Date you receive the Product and remains effective until terminated. Your rights under this Agreement will terminate immediately without notice from Sun if you materially breach it or take any action in derogation of Sun's and/or its licensors' rights to Product. Sun may terminate this Agreement should any Product become, or in Sun's reasonable opinion likely to become, the subject of a claim of intellectual property infringement or trade secret misappropriation. Upon termination, you will cease use of, and destroy, Product and confirm compliance in writing to Sun. Sections 3-9, inclusive, will survive termination of the Agreement. 5 DISCLAIMER OF WARRANTY. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, SUN PROVIDES THE PRODUCT "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. The entire risk as to the quality and performance of the Product is with you. Should it prove defective, you assume the cost of all necessary servicing, repair, or correction. In addition, Sun shall be allowed to provide updates to the Product in urgent cases. You are then obliged to install such updates. Such an urgent case includes, but is not limited to, a claim of rights to the Product by a third party. 6 LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE PRODUCT, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Product under this Agreement. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. 7 THIRD PARTY CODE. Portions of Product may be provided with notices and open source licenses from communities and third parties that govern the use of those portions, and any licenses granted hereunder do not alter any rights and obligations You may have under such open source licenses, however, the disclaimer of warranty and limitation of liability provisions in this Agreement will apply to all the Product. 8 EXPORT REGULATIONS. All Product, documents, technical data, and any other materials delivered under this Agreement are subject to U.S. export control laws and may be subject to export or import regulations in other countries. You agree to comply strictly with these laws and regulations and acknowledge that you have the responsibility to obtain any licenses to export, re-export, or import as may be required after delivery to you. 9 U.S. GOVERNMENT RESTRICTED RIGHTS. If Product is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Product and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). 10 MISCELLANEOUS. This Agreement is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. Course of dealing and other standard business conditions of the parties or the industry shall not apply. Place of performance and legal venue shall be Santa Clara, California, the domicile of Sun. Any action related to this Agreement will be governed by the law of the State of California and controlling U.S. federal law. No choice of law rules of any jurisdiction will apply. ./uninstall.sh 0000755 0001750 0001750 00000010434 11236071570 012305 0 ustar vbox vbox #!/bin/sh . `dirname $0`/routines.sh if [ -z "$ro_LOG_FILE" ]; then create_log "/var/log/vbox-uninstall.log" fi if [ -z "VBOX_NO_UNINSTALL_MESSAGE" ]; then info "Uninstalling VirtualBox" log "Uninstalling VirtualBox" log "" fi [ -z "$DKMS" ] && DKMS=`which dkms 2> /dev/null` [ -z "$CONFIG_DIR" ] && CONFIG_DIR="/etc/vbox" [ -z "$CONFIG" ] && CONFIG="vbox.cfg" [ -z "$CONFIG_FILES" ] && CONFIG_FILES="filelist" [ -z "$DEFAULT_FILES" ] && DEFAULT_FILES=`pwd`/deffiles # Terminate Server and VBoxNetDHCP if running terminate_proc VBoxSVC terminate_proc VBoxNetDHCP # Find previous installation if [ -r $CONFIG_DIR/$CONFIG ]; then . $CONFIG_DIR/$CONFIG PREV_INSTALLATION=$INSTALL_DIR fi # Remove previous installation if [ "$PREV_INSTALLATION" = "" ]; then log "Unable to find a VirtualBox installation, giving up." abort "Couldn't find a VirtualBox installation to uninstall." fi # Stop kernel module and uninstall runlevel script stop_init_script vboxdrv delrunlevel vboxdrv > /dev/null 2>&1 remove_init_script vboxdrv # Stop host networking and uninstall runlevel script stop_init_script vboxnet delrunlevel vboxnet > /dev/null 2>&1 remove_init_script vboxnet # Remove kernel module installed if [ -n "$DKMS" ]; then $DKMS remove -m vboxdrv -v $INSTALL_VER --all > /dev/null 2>&1 fi if [ -z "$VBOX_DONT_REMOVE_OLD_MODULES" ]; then find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2> /dev/null # Remove directories we have installed to in the past find /lib/modules/`uname -r` -name vbox\* 2>/dev/null|xargs rmdir -p 2> /dev/null find /lib/modules/`uname -r` -name misc\* 2>/dev/null|xargs rmdir -p 2> /dev/null rm -f /usr/src/vboxdrv-$INSTALL_VER 2> /dev/null rm -f /usr/src/vboxnetflt-$INSTALL_VER 2> /dev/null rm -f /usr/src/vboxnetadp-$INSTALL_VER 2> /dev/null fi # Remove symlinks rm -f /usr/bin/VirtualBox 2> /dev/null rm -f /usr/bin/VBoxManage 2> /dev/null rm -f /usr/bin/VBoxSDL 2> /dev/null rm -f /usr/bin/VBoxVRDP 2> /dev/null rm -f /usr/bin/VBoxHeadless 2> /dev/null rm -f /usr/bin/VBoxNetDHCP 2> /dev/null rm -f /usr/bin/vboxwebsrv 2> /dev/null rm -f /usr/bin/VBoxAddIF 2> /dev/null rm -f /usr/bin/VBoxDeleteIf 2> /dev/null rm -f /usr/bin/VBoxTunctl 2> /dev/null rm -f /usr/share/pixmaps/VBox.png 2> /dev/null rm -f /usr/share/applications/VirtualBox.desktop 2> /dev/null rm -f /usr/bin/rdesktop-vrdp 2> /dev/null rm -f $PREV_INSTALLATION/components/VBoxVMM.so rm -f $PREV_INSTALLATION/components/VBoxREM.so rm -f $PREV_INSTALLATION/components/VBoxRT.so rm -f $PREV_INSTALLATION/components/VBoxDDU.so rm -f $PREV_INSTALLATION/components/VBoxXPCOM.so # Remove udev description file if [ -f /etc/udev/rules.d/60-vboxdrv.rules ]; then rm -f /etc/udev/rules.d/60-vboxdrv.rules 2> /dev/null fi if [ -f /etc/udev/rules.d/10-vboxdrv.rules ]; then rm -f /etc/udev/rules.d/10-vboxdrv.rules 2> /dev/null fi cwd=`pwd` if [ -f $PREV_INSTALLATION/src/Makefile ]; then cd $PREV_INSTALLATION/src make clean > /dev/null 2>&1 fi if [ -f $PREV_INSTALLATION/src/vboxdrv/Makefile ]; then cd $PREV_INSTALLATION/src/vboxdrv make clean > /dev/null 2>&1 fi if [ -f $PREV_INSTALLATION/src/vboxnetflt/Makefile ]; then cd $PREV_INSTALLATION/src/vboxnetflt make clean > /dev/null 2>&1 fi if [ -f $PREV_INSTALLATION/src/vboxnetadp/Makefile ]; then cd $PREV_INSTALLATION/src/vboxnetadp make clean > /dev/null 2>&1 fi cd $PREV_INSTALLATION if [ -r $CONFIG_DIR/$CONFIG_FILES ]; then rm -f `cat $CONFIG_DIR/$CONFIG_FILES` 2> /dev/null elif [ -n "$DEFAULT_FILES" -a -r "$DEFAULT_FILES" ]; then DEFAULT_FILE_NAMES="" . $DEFAULT_FILES for i in "$DEFAULT_FILE_NAMES"; do rm -f $i 2> /dev/null done fi for file in `find $PREV_INSTALLATION 2> /dev/null`; do rmdir -p $file 2> /dev/null done cd $cwd mkdir -p $PREV_INSTALLATION 2> /dev/null # The above actually removes the current directory and parents! rmdir $PREV_INSTALLATION 2> /dev/null rm -r $CONFIG_DIR/$CONFIG 2> /dev/null if [ -z "$VBOX_NO_UNINSTALL_MESSAGE" ]; then rm -r $CONFIG_DIR/$CONFIG_FILES 2> /dev/null rmdir $CONFIG_DIR 2> /dev/null [ -n "$INSTALL_REV" ] && INSTALL_REV=" r$INSTALL_REV" info "VirtualBox $INSTALL_VER$INSTALL_REV has been removed successfully." log "Successfully $INSTALL_VER$INSTALL_REV removed VirtualBox." fi ./VirtualBox.tar.bz2 0000644 0001750 0001750 00275574170 11236071567 013300 0 ustar vbox vbox BZh91AY&SY8O>eeTR1t| }orq u9>c}amT:| } )7Og*=L{>]<|q[Nָg+z8fk υ;d!Z8IM>:/afDPZjm4}0HTL(A֨ T 0UMmڵ펚5A$!%(3-Wi5E@ljY,IG=F{ezvwi N&Osۼi3l*]}oRa\#5]Ar7 lwo BltǮg|rmvi-[۫lt9D\{T[P`j˘wԯ}now @(M (l})fXso;{j@ "P wswJ +q蓉 ԭ|/X>@ W,mݾWZ Xax> ulcp 3Vv_2/wf=̪}u}oηYJ %ξA s90r @; Ofq O-Kj: ( 4*Z{F:i-ԪSnm7eϭsCWZлD%=Cm6i2]dݍzA@k;)͓2] z^dVҊmWѐR_v9Q>跽^:>sݹejlZd>=3tմJPC|فV8<- [*w_O]eBy` Gׄ *T I.^:nx}