diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-05 15:51:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-05 15:51:40 -0300 |
commit | 8a1b4973e66ec1ecb8b6bb6b9870b341b7b9127d (patch) | |
tree | 8485f6c00d76cda913b55ad8ba47b5351b7f11eb /manifests | |
parent | b180ac33227e9d7125bb04932fdbc9b851906c84 (diff) | |
download | shellprompt-8a1b4973e66ec1ecb8b6bb6b9870b341b7b9127d.tar.gz shellprompt-8a1b4973e66ec1ecb8b6bb6b9870b341b7b9127d.tar.bz2 |
Do not manage /etc/bash.bashrc
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index ed293d3..56da9ea 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -8,12 +8,12 @@ class shellprompt { } # 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/shellprompt/bash.bashrc", - owner => "root", - group => "root", - mode => 0644, - ensure => present, - require => File['/etc/profile.d/prompt.sh'], - } + #file { "/etc/bash.bashrc": + # source => "puppet:///modules/shellprompt/bash.bashrc", + # owner => "root", + # group => "root", + # mode => 0644, + # ensure => present, + # require => File['/etc/profile.d/prompt.sh'], + #} } |