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`

Parameters:

  • zone (Any) (defaults to: hiera("r_profile::timezone::zone", undef))

    Timezone to set this node to, eg ‘Asia/Hong_Kong’

See Also:



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,
  }
}