fuel-library/deployment/puppet/apt/manifests/update.pp
Eugene Kirpichov 70bba431a8 Initial commit
2012-09-07 17:38:58 -07:00

10 lines
184 B
Puppet

class apt::update {
include apt::params
exec { 'apt_update':
command => "${apt::params::provider} update",
logoutput => 'on_failure',
refreshonly => true,
}
}