group => "root",
mode => 0644,
ensure => present,
- require => File['/etc/profile.d/prompt.sh'],
+ require => File['/usr/local/bin/prompt.sh'],
}
file { "/etc/bash.bashrc":
group => "root",
mode => 0644,
ensure => present,
- require => File['/etc/profile.d/prompt.sh'],
+ require => File['/usr/local/bin/prompt.sh'],
}
- # As of squeeze, custom configuration can be placed directly at
- # /etc/profile.d, so in the future this file has to stay there.
- #
- # This change has been backported to lenny via puppet so this
- # file is not needed anymore.
file { "/usr/local/bin/prompt.sh":
- ensure => absent,
- }
-
- file { "/etc/profile.d":
- ensure => directory,
- owner => "root",
- group => "root",
- }
-
- file { "/etc/profile.d/prompt.sh":
- source => "puppet://$server/modules/nodo/etc/profile.d/prompt.sh",
+ source => "puppet://$server/modules/nodo/bin/prompt.sh",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
- require => File['/etc/profile.d'],
+ }
+
+ # This is already being sourced by bash.bashrc.
+ file { "/etc/profile.d/prompt.sh":
+ ensure => absent,
}
}