diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-01-24 13:05:44 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-01-24 13:05:44 -0200 |
commit | 931671e315b9fe3722058f1474dca3f11aa7b86a (patch) | |
tree | 79fd133c02a3e84894e3b3397d391d60ec8c1d0b /manifests/subsystem/profile | |
parent | d990fed47634835c5f7e5ddfadacb9a764b2c678 (diff) | |
download | puppet-nodo-931671e315b9fe3722058f1474dca3f11aa7b86a.tar.gz puppet-nodo-931671e315b9fe3722058f1474dca3f11aa7b86a.tar.bz2 |
Adding nodo::subsystem::profile::vagrant
Diffstat (limited to 'manifests/subsystem/profile')
-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, + } +} |