mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 03:38:01 +00:00
11 lines
192 B
Puppet
11 lines
192 B
Puppet
stage { 'preinstall':
|
|
before => Stage['main']
|
|
}
|
|
class apt_get_update {
|
|
exec { '/usr/bin/apt-get -y update': }
|
|
}
|
|
class { 'apt_get_update':
|
|
stage => preinstall
|
|
}
|
|
|
|
include '::mysql::server' |