aboutsummaryrefslogtreecommitdiffstats
path: root/modules/timezone/manifests/timezone.pp
blob: 04abfb73b92308f936dd806c967e19eceecf9951 (plain)
1
2
3
4
5
6
define timezone::timezone() {
    file { '/etc/localtime':
        ensure => link,
        target => "/usr/share/zoneinfo/$name"
    }
}