From 2d5abdfc2dc6cb60fcf1b872200af1d7d36e3ae3 Mon Sep 17 00:00:00 2001 From: Tuomo Tanskanen Date: Tue, 4 Nov 2014 14:30:03 +0200 Subject: [PATCH] Remove extraneous install argument from yum Yum has an extra "install" in the command line in "install-extras.sh". It is intepreted as a package name, but luckily just ignored. --- centos/install-extras.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centos/install-extras.sh b/centos/install-extras.sh index 4e722ed..ef32531 100755 --- a/centos/install-extras.sh +++ b/centos/install-extras.sh @@ -17,4 +17,4 @@ utils.lxc.attach yum update -y # TODO: Support for appending to this list from outside PACKAGES=(vim curl wget man-db bash-completion python-software-properties ca-certificates sudo nfs-common) -utils.lxc.attach yum install install ${PACKAGES[*]} -y +utils.lxc.attach yum install ${PACKAGES[*]} -y