Created
December 10, 2017 12:59
-
-
Save hfm/416d9884568df3448dc78edfab534464 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Update the systemd temp files | |
# | |
# @api public | |
# | |
# @see timedatectl(1) | |
# | |
# @param operations | |
# The operations to perform on the systemd tempfiles | |
# | |
# * All operations may be combined but you'll probably only ever want to | |
# use ``create`` | |
# | |
class systemd::timedatectl ( | |
String $timezone = 'UTC', | |
) { | |
exec { 'timedatectl': | |
command => "timedatectl set-timezone ${timezone}", | |
unless => "realpath /etc/localhost | grep -qw '/usr/share/zoneinfo/${timezone}'", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment