aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-20 12:48:56 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-20 12:48:56 +0300
commit8087ac4ad9b6c363d55b65c6bb1c801d5d274c84 (patch)
tree09d1a621ecd0b98f14ac74b3e2b0715cad660f1b
parent53bf0ab2fe4588f5493c18c6663b755601458303 (diff)
downloadpuppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar
puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar.gz
puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar.bz2
puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.tar.xz
puppet-8087ac4ad9b6c363d55b65c6bb1c801d5d274c84.zip
lint fixes for timezone
-rw-r--r--modules/timezone/manifests/timezone.pp2
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}"
}
}