blob: 943ea5647ec9aa8b51de6bf6bc3cc42f2b30e1c2 [file] [log] [blame]
ramonsalguer8ac0f082020-06-03 20:13:34 +02001#!/bin/sh -eux
2
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# set a default HOME_DIR environment variable if not set
16HOME_DIR="${HOME_DIR:-/home/vagrant}";
17
18case "$PACKER_BUILDER_TYPE" in
19virtualbox-iso|virtualbox-ovf)
20 VER="`cat $HOME_DIR/.vbox_version`";
21 ISO="VBoxGuestAdditions_$VER.iso";
22 mkdir -p /tmp/vbox;
23 mount -o loop $HOME_DIR/$ISO /tmp/vbox;
24 sh /tmp/vbox/VBoxLinuxAdditions.run \
25 || echo "VBoxLinuxAdditions.run exited $? and is suppressed." \
26 "For more read https://www.virtualbox.org/ticket/12479";
27 umount /tmp/vbox;
28 rm -rf /tmp/vbox;
29 rm -f $HOME_DIR/*.iso;
30 ;;
31esac