phpservermon/puphpet/puppet/modules/apt/manifests/update.pp

11 lines
225 B
Puppet

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