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