blob: d9f697ed7e4f6dcd4f178b1ef5347a8df5cd890c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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::screen
include nodo::subsystem::hostname
include nodo::subsystem::local
# Common utilities
include nodo::utils::vagrant
# Other modules
include concat::setup
}
|