20 lines
385 B
Puppet
20 lines
385 B
Puppet
# == Class: baseconfig
|
|
#
|
|
# Performs initial configuration tasks for all Vagrant boxes.
|
|
#
|
|
class baseconfig {
|
|
|
|
exec { 'apt-get update':
|
|
command => '/usr/bin/apt-get update';
|
|
}
|
|
host { 'hostmachine':
|
|
}
|
|
|
|
file {
|
|
'/home/vagrant/.bashrc':
|
|
owner => 'vagrant',
|
|
group => 'vagrant',
|
|
mode => '0644',
|
|
source => 'puppet:///modules/baseconfig/bashrc';
|
|
}
|
|
} |