From e2fb49e7ce6431b3fdc777f30f3470b77de36ecd Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Sat, 11 Mar 2017 16:45:32 +0000 Subject: [PATCH] Install Launchpad migration script dependencies Change-Id: Ied699cb801d4bcc4dbf551fdd599d81d2f08b2b2 --- manifests/application.pp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/manifests/application.pp b/manifests/application.pp index ea1782a..8ef7e1a 100644 --- a/manifests/application.pp +++ b/manifests/application.pp @@ -138,6 +138,18 @@ class storyboard::application ( ] } + # Install launchpad migration dependencies + if !defined(Package['python-launchpadlib']) { + package { 'python-launchpadlib': + ensure => present + } + } + if !defined(Package['python-simplejson']) { + package { 'python-simplejson': + ensure => present + } + } + # Create the root dir file { $install_root: ensure => directory,