diff --git a/manifests/packages/common.pp b/manifests/packages/common.pp index 583fc24..7714c36 100644 --- a/manifests/packages/common.pp +++ b/manifests/packages/common.pp @@ -29,10 +29,10 @@ exec { 'install-rvm': command => "bash /tmp/rvm", creates => '/usr/local/rvm/bin/rvm', - require => Exec['download-rvm-install'], + require => [ Exec['download-rvm-install'], Package['git'] ], } file { '/tmp/rvm': ensure => absent, require => Exec['install-rvm'], } -} \ No newline at end of file +}