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.
This commit is contained in:
Tuomo Tanskanen 2014-11-04 14:30:03 +02:00
parent 5a65b189d8
commit 2d5abdfc2d

View file

@ -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