blob: 742c328a806f1a3161f89203222dea4465c88173 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# A virtual machine instance for development.
# Use it along with the bootstrap module and an application like vagrant or KVMX.
class nodo::role::dev::virtual {
# 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
}
|