blob: 6306b583d41795c93bf7b1ce0e653cb6d043c029 (
plain)
1
2
3
4
5
6
7
8
9
|
class nodo::subsystem::profile::vagrant inherits nodo::subsystem::profile {
file { "/root/.profile":
source => "puppet:///modules/nodo/root/profile",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
}
}
|