7517727152
Upstream-commit: 814bb505ca5c713941d710566d85294962605317 Component: engine
18 lines
246 B
Puppet
18 lines
246 B
Puppet
node default {
|
|
exec {
|
|
"apt_update" :
|
|
command => "/usr/bin/apt-get update"
|
|
}
|
|
|
|
Package {
|
|
require => Exec['apt_update']
|
|
}
|
|
|
|
group { "puppet":
|
|
ensure => "present"
|
|
}
|
|
|
|
include "docker"
|
|
|
|
}
|