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,