aboutsummaryrefslogtreecommitdiff
path: root/manifests/role/vagrant.pp
blob: 717e0239ef698ca08451c8b6ff6d327e493ac157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# A vagrant instance
#
# Required packages in the box:
#
# - sqlite3
# - libsqlite3-ruby
# - ruby-hiera-puppet
# - libactiverecord-ruby
# - ruby-sqlite3
# - usbutils
#
# Required files in the box
#
# - /etc/puppet/hiera.yaml
#
# Required /etc/puppet/puppet.conf parameters in the [main] section:
#
# - storeconfigs = true
# - dbadapter = sqlite3
#
# Example usage
#
## Import main module
#import "nodo"
#
## Vagrant classes
#include nodo::role::vagrant
#
class nodo::role::vagrant {
  # First include the LSB class
  include lsb

  # Then include our subsystems
  include nodo::subsystem::locales
  include nodo::subsystem::profile::vagrant
  include nodo::subsystem::screen
  include nodo::subsystem::hostname
  include nodo::subsystem::local

  # Common utilities
  include nodo::utils::vagrant

  # Other modules
  include concat::setup
}