diff options
author | elijah <elijah@riseup.net> | 2016-06-03 12:02:09 -0700 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-06-07 09:56:29 -0400 |
commit | c2e54a8a241ad09d918071901cd70b7bbf00c047 (patch) | |
tree | 299364766d2f412ab37986634277ad47adae7ea2 | |
parent | dcce787c5352a2f78758c73b48cf85dfc0d2a963 (diff) |
auto run bundler when needed for site_static0.8.x
-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, |