aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 56da9eaf4065c7f38c120fc8cb7f15d9f8a26653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class shellprompt {
  file { "/etc/profile.d/prompt.sh":
    source  => "puppet:///modules/shellprompt/prompt",
    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/shellprompt/bash.bashrc",
  #  owner   => "root",
  #  group   => "root",
  #  mode    => 0644,
  #  ensure  => present,
  #  require => File['/etc/profile.d/prompt.sh'],
  #}
}