diff options
| author | elijah <elijah@riseup.net> | 2016-06-03 12:02:09 -0700 | 
|---|---|---|
| committer | Micah <micah@leap.se> | 2016-06-16 11:11:03 -0400 | 
| commit | 2055ae4ae2e780dec0b73b6233e1785ec6409546 (patch) | |
| tree | 299364766d2f412ab37986634277ad47adae7ea2 | |
| parent | 462975799b9c130285761958d040b71f0ab1ac9b (diff) | |
auto run bundler when needed for site_static
| -rw-r--r-- | puppet/modules/site_static/manifests/location.pp | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/puppet/modules/site_static/manifests/location.pp b/puppet/modules/site_static/manifests/location.pp index d116de2f..ab2b7494 100644 --- a/puppet/modules/site_static/manifests/location.pp +++ b/puppet/modules/site_static/manifests/location.pp @@ -23,6 +23,19 @@ define site_static::location($path, $format, $source) {      }    } +  if ($format == 'rack') { +    # Run bundler if there is a Gemfile +    exec { 'bundler_update': +      cwd     => $file_path, +      command => '/bin/bash -c "/usr/bin/bundle check --path vendor/bundle || /usr/bin/bundle install --path vendor/bundle --without test development debug"', +      unless  => '/usr/bin/bundle check --path vendor/bundle', +      onlyif  => 'test -f Gemfile', +      user    => 'www-data', +      timeout => 600, +      require => [Class['bundler::install'], Class['site_config::ruby::dev']]; +    } +  } +    vcsrepo { $file_path:      ensure   => present,      force    => true,  | 
