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