Skip to content

Instantly share code, notes, and snippets.

@cbetta
Last active December 12, 2015 04:28
Show Gist options
  • Save cbetta/4714469 to your computer and use it in GitHub Desktop.
Save cbetta/4714469 to your computer and use it in GitHub Desktop.
apt-get update before puppet
stage { 'preinstall':
before => Stage['main']
}
class apt_get_update {
exec { 'apt-get -y update': }
}
class { 'apt_get_update':
stage => preinstall
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment