
* Use Ubuntu 14.04.3 ISO instead ovf box * Add a libvirt target as well * Add additional build shell scripts from bogdando/packer-atlas-example * Use sudo for all shell commands * Fix virtualbox guest additions build order * Cleanups to reduce end image size * Update README how to build and up both for vbox/libvirt Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
13 lines
411 B
Bash
13 lines
411 B
Bash
#!/bin/bash -eux
|
|
|
|
if [[ $UPDATE =~ true || $UPDATE =~ 1 || $UPDATE =~ yes ]]; then
|
|
echo "==> Updating list of repositories"
|
|
# apt-get update does not actually perform updates, it just downloads and indexes the list of packages
|
|
apt-get -y update
|
|
apt-get -y upgrade
|
|
echo "==> Performing dist-upgrade (all packages and kernel)"
|
|
apt-get -y dist-upgrade --force-yes
|
|
reboot
|
|
sleep 160
|
|
fi
|