Files
devbox/puppet/manifests/baseconfig.pp

12 lines
188 B
Puppet

# == Class: baseconfig
#
# Performs initial configuration tasks for all Vagrant boxes.
#
class baseconfig {
exec { 'apt-get update':
command => '/usr/bin/apt-get update';
}
}