deffiles revision eb4ce29f3435061a9053c8ef3c541f89639ad86f
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync#!/bin/sh
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync#
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# Sun VirtualBox
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# VirtualBox linux Guest Additions default files list
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync#
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# Copyright (C) 2009 Sun Microsystems, Inc.
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync#
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# Sun Microsystems, Inc. confidential
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# All rights reserved
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync#
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# This file contains the names of all files that the Guest Additions for
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# Linux guests have ever installed into the main filesystem tree (/usr and
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# /sbin). No entries should ever be removed from this file, as it is used
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# for uninstalling old installations of VirtualBox which did not keep track
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# of the names of their files, or damaged installations which lost track of
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync# them.
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsyncDEFAULT_FILE_NAMES=" \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/bin/vboxadd-xclient \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/bin/VBoxClient \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/bin/VBoxControl \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/sbin/vboxadd-timesync \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/sbin/vboxadd-service \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/sbin/VBoxService \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /sbin/mount.vboxsf \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGLarrayspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGLarrayspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGLcrutil.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGLcrutil.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGLerrorspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGLerrorspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGLfeedbackspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGLfeedbackspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGLpackspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGLpackspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGLpassthroughspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGLpassthroughspu.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/VBoxOGL.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/VBoxOGL.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/X11/Xsession.d/98vboxadd-xclient \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/X11/xinit.d/98vboxadd-xclient \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/X11/xinit/xinitrc.d/98vboxadd-xclient.sh \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/bin/VBoxRandR \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/bin/VBoxClient-all \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/xdg/autostart/vboxclient.desktop \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/share/autostart/vboxclient.desktop \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/udev/rules.d/60-vboxadd.rules \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/share/xserver-xorg/pci/vboxvideo.ids \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/hal/fdi/policy/90-vboxguest.fdi \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /etc/udev/rules.d/70-xorg-vboxmouse.rules \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/share/hal/fdi/policy/20thirdparty/90-vboxguest.fdi \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/X11/xorg.conf.d/50-vboxmouse.conf \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/share/X11/xorg.conf.d/50-vboxmouse.conf \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/dri/vboxvideo_dri.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/dri/vboxvideo_dri.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/xorg/modules/drivers/vboxvideo_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/xorg/modules/drivers/vboxvideo_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/X11R6/lib64/modules/drivers/vboxvideo_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/X11R6/lib/modules/drivers/vboxvideo_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/X11R6/lib/X11/modules/drivers/vboxvideo_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib64/xorg/modules/input/vboxmouse_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/lib/xorg/modules/input/vboxmouse_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/X11R6/lib64/modules/input/vboxmouse_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/X11R6/lib/modules/input/vboxmouse_drv.so \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/X11R6/lib/X11/modules/input/vboxmouse_drv.so
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync"
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsyncDEFAULT_VERSIONED_FILE_NAMES=" \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/src/vboxadd \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/src/vboxguest \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/src/vboxvfs \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/src/vboxsf \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync /usr/src/vboxvideo \
eb4ce29f3435061a9053c8ef3c541f89639ad86fvboxsync"