diff options
Diffstat (limited to 'manifests/subsystem')
-rw-r--r-- | manifests/subsystem/profile.pp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/manifests/subsystem/profile.pp b/manifests/subsystem/profile.pp index 56190eb..884865b 100644 --- a/manifests/subsystem/profile.pp +++ b/manifests/subsystem/profile.pp @@ -6,13 +6,23 @@ class nodo::subsystem::profile { } file { "/etc/profile.d/prompt.sh": - source => "puppet:///modules/nodo/bin/prompt.sh", + source => "puppet:///modules/nodo/etc/profile.d/prompt.sh", owner => "root", group => "root", mode => 0644, ensure => present, } + # Ideally we should not manage this file, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675008 + file { "/etc/bash.bashrc": + source => "puppet:///modules/nodo/etc/bash.bashrc", + owner => "root", + group => "root", + mode => 0644, + ensure => present, + require => File['/etc/profile.d/prompt.sh'], + } + # See http://linuxforcynics.com/how-to/using-rxvt-unicode-with-screen # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630976 # https://bbs.archlinux.org/viewtopic.php?id=50647 |