diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-20 12:48:56 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-20 12:48:56 +0300 |
commit | 8087ac4ad9b6c363d55b65c6bb1c801d5d274c84 (patch) | |
tree | 09d1a621ecd0b98f14ac74b3e2b0715cad660f1b /modules/timezone | |
parent | 53bf0ab2fe4588f5493c18c6663b755601458303 (diff) | |
download | puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar.gz puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar.bz2 puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar.xz puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.zip |
lint fixes for timezone
Diffstat (limited to 'modules/timezone')
-rw-r--r-- | modules/timezone/manifests/timezone.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/timezone/manifests/timezone.pp b/modules/timezone/manifests/timezone.pp index 04abfb73..8f3298a2 100644 --- a/modules/timezone/manifests/timezone.pp +++ b/modules/timezone/manifests/timezone.pp @@ -1,6 +1,6 @@ define timezone::timezone() { file { '/etc/localtime': ensure => link, - target => "/usr/share/zoneinfo/$name" + target => "/usr/share/zoneinfo/${name}" } } |