Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Install lxc explicitly
Browse files Browse the repository at this point in the history
As of lxc-docker-9.0, the lxc package is no longer installed on Ubuntu.
  • Loading branch information
carmstrong committed Mar 27, 2014
1 parent b788551 commit 6a2ca5e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion builder/Dockerfile
Expand Up @@ -14,7 +14,7 @@ RUN apt-get install -yq aufs-tools iptables ca-certificates lxc
RUN echo "deb http://get.docker.io/ubuntu docker main" > /etc/apt/sources.list.d/docker.list
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
RUN apt-get update -q
RUN apt-get install -yq lxc-docker-0.9.0
RUN apt-get install -yq lxc lxc-docker-0.9.0

# install recent pip
RUN wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -
Expand Down
2 changes: 1 addition & 1 deletion contrib/digitalocean/prepare-controller-image.sh
Expand Up @@ -28,7 +28,7 @@ apt-get upgrade -yq
wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -

# install required packages
apt-get install lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq
apt-get install lxc lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq

# wait for docker to start
while [ ! -e /var/run/docker.sock ] ; do
Expand Down
2 changes: 1 addition & 1 deletion contrib/digitalocean/prepare-node-image.sh
Expand Up @@ -28,7 +28,7 @@ apt-get upgrade -yq
wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -

# install required packages
apt-get install lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq
apt-get install lxc lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq

# wait for docker to start
while [ ! -e /var/run/docker.sock ] ; do
Expand Down
2 changes: 1 addition & 1 deletion contrib/ec2/prepare-controller-ami.sh
Expand Up @@ -33,7 +33,7 @@ apt-get dist-upgrade -yq
wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -

# install required packages
apt-get install lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq
apt-get install lxc lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq

# wait for docker to start
while [ ! -e /var/run/docker.sock ] ; do
Expand Down
2 changes: 1 addition & 1 deletion contrib/ec2/prepare-node-ami.sh
Expand Up @@ -33,7 +33,7 @@ apt-get dist-upgrade -yq
wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -

# install required packages
apt-get install lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq
apt-get install lxc lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq

# wait for docker to start
while [ ! -e /var/run/docker.sock ] ; do
Expand Down
2 changes: 1 addition & 1 deletion contrib/rackspace/prepare-node-image.sh
Expand Up @@ -34,7 +34,7 @@ apt-get dist-upgrade -yq
wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -

# install required packages
apt-get install lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq
apt-get install lxc lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq

# wait for docker to start
while [ ! -e /var/run/docker.sock ] ; do
Expand Down
2 changes: 1 addition & 1 deletion contrib/vagrant/prepare-ubuntu-box.sh
Expand Up @@ -35,7 +35,7 @@ apt-get dist-upgrade -yq
wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python -

# install required packages
apt-get install lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq
apt-get install lxc lxc-docker-0.9.0 fail2ban curl git inotify-tools make -yq

# wait for docker to start
while [ ! -e /var/run/docker.sock ] ; do
Expand Down

0 comments on commit 6a2ca5e

Please sign in to comment.