diff options
Diffstat (limited to 'manifests/subsystem/profile/vagrant.pp')
-rw-r--r-- | manifests/subsystem/profile/vagrant.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/subsystem/profile/vagrant.pp b/manifests/subsystem/profile/vagrant.pp new file mode 100644 index 0000000..6306b58 --- /dev/null +++ b/manifests/subsystem/profile/vagrant.pp @@ -0,0 +1,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, + } +} |