vagrant-lxc-ng/boxes/debian/install-extras.sh
2014-03-09 21:21:38 -03:00

19 lines
549 B
Bash
Executable file

#!/bin/bash
set -e
source common/ui.sh
info 'Installing extra packages and upgrading'
debug 'Bringing container up'
lxc-start -d -n ${CONTAINER} &>/dev/null || true
# TODO: Support for setting this from outside
UBUNTU_PACKAGES=(vim curl wget man-db bash-completion python-software-properties software-properties-common)
lxc-attach -n ${CONTAINER} -- apt-get update
lxc-attach -n ${CONTAINER} -- apt-get install ${UBUNTU_PACKAGES[*]} -y --force-yes
lxc-attach -n ${CONTAINER} -- apt-get upgrade -y --force-yes
warn 'TODO: Install provisioners'