aboutsummaryrefslogtreecommitdiffstats
path: root/modules/timezone/manifests/init.pp
blob: 0f33093a17d351188bf6d49e7e3356474511caad (plain)
1
2
3
4
5
6
7
8

class timezone {
    define timezone() {
        file { "/etc/localtime": 
            ensure => "/usr/share/zoneinfo/$name" 
        }
    }
}