summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/operatingsystem.pp
blob: 4a650150ecb355b4c1f9203915952119c3b96406 (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
26
27
28
29
30
31
class base::operatingsystem {
  include cron

  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';
    '/etc/cron.hourly/pacman':
      source => 'puppet:///modules/base/pacman-cron',
      mode => '0755',
      require => Class['cron'];
  }

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