module-puppetlabs-apt/manifests/update.pp

10 lines
184 B
ObjectPascal
Raw Normal View History

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