summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/operatingsystem.pp
blob: 3241c25329b49f80ca602a36c082b8b3e35b2593 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class base::operatingsystem {
  file {
    "/etc/locale.gen":
      content => "en_US.UTF-8 UTF-8\n",
      notify => Exec["regen locale data"];
    "/etc/locale.conf":
      content => "LANG=en_US.UTF-8\n",
      require => [
        File["/etc/locale.gen"],
        Exec["regen locale data"],
      ];
    "/etc/hosts":
      content => template('base/hosts');
    '/etc/yaourtrc':
      source => 'puppet:///modules/base/yaourtrc';
  }

  exec { "regen locale data":
    command => "/usr/bin/locale-gen",
    refreshonly => true;
  }
}