--- /dev/null
+# ~/.profile: executed by Bourne-compatible login shells.
+
+if [ "$BASH" ]; then
+ if [ -f ~/.bashrc ]; then
+ . ~/.bashrc
+ fi
+fi
+
+# See https://github.com/mitchellh/vagrant/issues/1673
+tty -s && mesg n
# 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
--- /dev/null
+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,
+ }
+}