Skip to content

Commit

Permalink
use fully qualified paths for commands
Browse files Browse the repository at this point in the history
  • Loading branch information
garethr committed Mar 17, 2013
1 parent ba541f3 commit 05f0698
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

exec { 'untar_kibana':
command => 'tar xvf /usr/local/src/kibana-ruby.tar.gz',
command => '/bin/tar xvf /usr/local/src/kibana-ruby.tar.gz',
cwd => '/opt',
creates => "/opt/rashidkpc-Kibana-${kibana::git_hash}",
path => '/bin',
Expand All @@ -20,7 +20,7 @@
}

exec { 'bundle_kibana':
command => 'bundle install --path vendor',
command => '/usr/local/bin/bundle install --path vendor',
cwd => '/opt/kibana',
creates => '/opt/kibana/vendor',
}
Expand Down

0 comments on commit 05f0698

Please sign in to comment.