Add missing wget dependency to provision.py

We also explicitly include `ca-certificates`, as it is needed for the install
to complete. Usually this is brought in as a `Recommends` of `wget`, but some
systems may not automatically include such dependencies.

Fixes #470.
This commit is contained in:
Luke Faraone 2016-02-18 03:39:52 +00:00
parent 668d0d9dfa
commit c89d675462
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,8 @@ APT_DEPENDENCIES = {
"git",
"npm",
"yui-compressor",
"wget",
"ca-certificates", # Explicit dependency in case e.g. wget is already installed
"puppet", # Used by lint-all
"gettext", # Used by makemessages i18n
]