aboutsummaryrefslogtreecommitdiff
path: root/manifests/role/vagrant.pp
blob: bfb21905ce2c4d7f9a02841d91543a57a361c75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# A vagrant instance. Use it along with the bootstrap module.
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
}