Skip to content

Commit

Permalink
[#19,#20] automatically install with apt instead of asking for y/n
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfpack committed Jun 25, 2018
1 parent 785eb24 commit 2dcfbd9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions comparison/box-by-box-kvm-docker/install_docker_prereqs.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

sudo apt-get update

sudo apt-get install \
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
Expand All @@ -11,11 +11,11 @@ sudo apt-get install \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88

sudo add-apt-repository \
sudo add-apt-repository -y \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"

sudo apt-get update

sudo apt-get install docker-ce
sudo apt-get install -y docker-ce
4 changes: 2 additions & 2 deletions comparison/box-by-box-kvm-docker/install_kvm_prereqs.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ popd
apt-get update
## Ubuntu 18.04 does not have source repos enabled, but does not seem to need them for the libvirt plugin
#apt-get build-dep vagrant ruby-libvirt
apt-get install qemu libvirt-bin ebtables dnsmasq
apt-get install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev
apt-get install -y qemu libvirt-bin ebtables dnsmasq
apt-get install -y libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev

vagrant plugin install vagrant-libvirt

0 comments on commit 2dcfbd9

Please sign in to comment.