mirror of https://github.com/zulip/zulip.git
11 lines
225 B
ObjectPascal
11 lines
225 B
ObjectPascal
|
class apt::update {
|
||
|
include apt::params
|
||
|
|
||
|
exec { 'apt_update':
|
||
|
command => "${apt::params::provider} update",
|
||
|
logoutput => 'on_failure',
|
||
|
refreshonly => true,
|
||
|
timeout => $apt::update_timeout,
|
||
|
}
|
||
|
}
|