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:
parent
5a65b189d8
commit
2d5abdfc2d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue