Forge Home

timezone

Manage timezone settings via Puppet

8,562 downloads

5,402 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 5.0.3 (latest)
  • 5.0.2
  • 4.0.0
released Dec 17th 2018
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.4.x
  • Puppet >= 4.9.1 < 6.0.0
  • RedHat, CentOS, OracleLinux, Scientific, Debian, Ubuntu, Gentoo, ArchLinux

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'simp-timezone', '5.0.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add simp-timezone
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install simp-timezone --version 5.0.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

simp/timezone — version 5.0.3 Dec 17th 2018

puppet-timezone Build Status


THIS IS A FORK OF THE MODULE AND WILL REVERT TO THE ORIGINAL MODULE ONCE THE SIMP PACKAGING SYSTEM HAS BEEN UPDATED.

The fork includes the following minor changes that are related to publishing and maintenance:

  • .travis.yml => Modified to work with the SIMP publishing process
  • CHANGELOG => Added to work with the SIMP RPM building
  • README.md => These modifications
  • Rakefile => Modified with the standard SIMP rake tasks
  • metadata.json => Modified namespace and Puppet 5 support
  • tests/init.pp => Removed per modern Puppet best practice
  • manifests/init.pp => updated with latest fixes and added a require statement for /etc/localtime when running timezone update to ensure /etc/localtime is a link.
  • spec/support/* => tests for the changes in manifests/init.pp

New modifications are copyright Onyx Point, Inc.


Manage timezone settings via Puppet

Supported Puppet versions

  • Puppet >= 4
  • Last version supporting Puppet 3: v3.5.0

Usage

Set timezone to UTC

    class { 'timezone':
        timezone => 'UTC',
    }

Set timezone to Europe/Berlin

    class { 'timezone':
        timezone => 'Europe/Berlin',
    }

Other class parameters

  • ensure: present or absent, default: present
  • autoupgrade: true or false, default: false. Auto-upgrade package, if there is a newer version
  • hwutc: true or false, default: undef. This parameter will ensure that the real time clock is set to UTC rather than the local timezone. This is not supported on all platforms and will fail if you try and set it on an unsupported platform. A typical error message from the timedatectl command, if this value is set to false would be:
Warning: The system is configured to read the RTC time in the local time zone.
         This mode can not be fully supported. It will create various problems
         with time zone changes and daylight saving time adjustments. The RTC
         time is never updated, it relies on external facilities to maintain it.
         If at all possible, use RTC in UTC by calling
         'timedatectl set-local-rtc 0'.