f12b007edd
Before, there were two Execs that did an `apt-get update`, `Exec[refresh_apt]` and `Exec[apt_updated]`, which were triggered by different resources. This changes gets rid of the first one, and all resources now depend on `Exec[apt_updated]`.
7 lines
91 B
Puppet
7 lines
91 B
Puppet
class apt::update inherits ::apt {
|
|
|
|
Exec['update_apt'] {
|
|
refreshonly => false
|
|
}
|
|
|
|
}
|