# Custom configuration for user profiles class nodo::subsystem::profile { # TODO: remove in the future file { "/usr/local/bin/prompt.sh": ensure => absent, } file { "/etc/profile.d/prompt.sh": source => "puppet:///modules/nodo/bin/prompt.sh", owner => "root", group => "root", mode => 0644, ensure => present, } # 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 # https://stackoverflow.com/questions/12345675/screen-cannot-find-terminfo-entry-for-xterm-256color file { '/lib/terminfo/r/rxvt-256color': source => "puppet:///modules/nodo/terminfo/rxvt-256color", owner => root, group => root, mode => 0644, ensure => $::lsbdistcodename ? { 'squeeze' => present, default => absent, }, } }