diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 17:53:57 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 17:53:57 -0200 |
commit | 328ffbd2ce6ec5f3d07a3c66153ec9a58e37f9bb (patch) | |
tree | 293d3e2e1045c827c1eb78a2075b14561ee23cd4 | |
parent | 886540ad28c5a6b875b97b27721dba06135047ab (diff) | |
download | puppet-nodo-328ffbd2ce6ec5f3d07a3c66153ec9a58e37f9bb.tar.gz puppet-nodo-328ffbd2ce6ec5f3d07a3c66153ec9a58e37f9bb.tar.bz2 |
Variable fix
-rw-r--r-- | manifests/utils/storage/iso.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/utils/storage/iso.pp b/manifests/utils/storage/iso.pp index 73590f7..0492a1d 100644 --- a/manifests/utils/storage/iso.pp +++ b/manifests/utils/storage/iso.pp @@ -1,6 +1,6 @@ class nodo::utils::storage::iso { package { 'syslinux': - ensure => $::arch ? { + ensure => $::architecture ? { 'amd64' => present, 'i386' => present, default => absent, |