summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/operatingsystem.pp
blob: e5425f3768d3f60950faea4ae86f085e240cbe6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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/localtime":
      ensure => link,
      target => "/usr/share/zoneinfo/UTC";
    "/etc/hosts":
      content => template('base/hosts');
    '/etc/yaourtrc':
      source => 'puppet:///modules/base/yaourtrc';
  }

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