aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/role/vagrant.pp2
-rw-r--r--manifests/subsystem/profile/vagrant.pp9
2 files changed, 10 insertions, 1 deletions
diff --git a/manifests/role/vagrant.pp b/manifests/role/vagrant.pp
index 034f706..717e023 100644
--- a/manifests/role/vagrant.pp
+++ b/manifests/role/vagrant.pp
@@ -32,7 +32,7 @@ class nodo::role::vagrant {
# Then include our subsystems
include nodo::subsystem::locales
- include nodo::subsystem::profile
+ include nodo::subsystem::profile::vagrant
include nodo::subsystem::screen
include nodo::subsystem::hostname
include nodo::subsystem::local
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,
+ }
+}