Puppet Class: r_profile::timezone
- Defined in:
- manifests/timezone.pp
Overview
R_profile::Timezone
Select the active system timezone (requires reboot). Currently supports Linux, Solaris and AIX. Timezone names need to match the Olsen names available on the current system. On Linux, these are normally found under ‘/usr/share/zoneinfo`
9 10 11 12 13 14 15 16 |
# File 'manifests/timezone.pp', line 9
class r_profile::timezone(
$zone = hiera("r_profile::timezone::zone", undef),
) {
class { "timezone":
zone => $zone,
}
}
|