diff options
Diffstat (limited to 'provisioning/modules')
-rw-r--r-- | provisioning/modules/pixelated/manifests/source.pp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/provisioning/modules/pixelated/manifests/source.pp b/provisioning/modules/pixelated/manifests/source.pp index c42a30b1..9529f761 100644 --- a/provisioning/modules/pixelated/manifests/source.pp +++ b/provisioning/modules/pixelated/manifests/source.pp @@ -1,4 +1,4 @@ -# install useragent from source +# install requirements for setting up the useragent from source class pixelated::source { include phantomjs @@ -8,7 +8,6 @@ class pixelated::source { 'nodejs-legacy', 'npm', 'python-dev', - 'virtualenv', 'libffi-dev', 'libssl-dev', 'g++', @@ -16,14 +15,15 @@ class pixelated::source { 'libfontconfig1', 'build-essential', 'ruby-compass']: - ensure => latest + ensure => latest } - stage { 'install_pixelated': } - - class { 'pixelated::source::install_useragent' : - stage => install_pixelated + # from jessie on, the 'virtualenv' cmd is provided + # by a seperate package that is recommended by + # 'python-virtualenv' + package { 'python-virtualenv': + ensure => latest, + install_options => [ '-o', 'APT::Install-Recommends=true'], } - Stage['main'] -> Stage['install_pixelated'] } |