From c89d6754620dbc34c2413e4d97773ad100fb44bb Mon Sep 17 00:00:00 2001 From: Luke Faraone Date: Thu, 18 Feb 2016 03:39:52 +0000 Subject: [PATCH] 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. --- provision.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/provision.py b/provision.py index 33f567c32d..5a2db37325 100644 --- a/provision.py +++ b/provision.py @@ -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 ]