From: Peter Palfrader Date: Tue, 5 Dec 2017 22:06:58 +0000 (+0100) Subject: Install packages for salsa registration app (re: RT#7008) X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=913e5f35f67f911a318960c2e834007e829d94d1;p=mirror%2Fdsa-puppet.git Install packages for salsa registration app (re: RT#7008) --- diff --git a/modules/salsa/manifests/packages.pp b/modules/salsa/manifests/packages.pp index 06f4d4b20..7e15e4dd9 100644 --- a/modules/salsa/manifests/packages.pp +++ b/modules/salsa/manifests/packages.pp @@ -41,4 +41,15 @@ class salsa::packages inherits salsa { ] ensure_packages($mgmt_requirements, { ensure => 'installed' }) + + $registrationapp_requirements = [ + 'libapache2-mod-wsgi-py3', + 'libjs-bootstrap', + 'python3', + 'python3-flask', + 'python3-flaskext.wtf', + 'python3-oauthlib', + ] + + ensure_packages($registrationapp_requirements, { ensure => 'installed' }) }