This in insanity.

Now I have:
    $ec2_config = hiera('ec2_config')

    if $::ec2_instance_id {
        $pvdisks = $ec2_config['instance'][$::ec2_instance_type]['pvdisks']
        $pvdisk_count = inline_template('<%= @pvdisks.length %>')
        $swapvol_enabled =
$ec2_config['instance'][$::ec2_instance_type]['volumes']['swap']['enabled']
        $logvol_enabled =
$ec2_config['instance'][$::ec2_instance_type]['volumes']['log']['enabled']
        notice ("HERE0 ($swapvol_enabled) ($logvol_enabled)")
        if ($swapvol_enabled == 'true') {
            $swapvol_size =
$ec2_config['instance'][$::ec2_instance_type]['volumes']['swap']['size']
            notice ("HERE1")
        }
        if ($logvol_enabled == 'true') {
            $logvol_size =
$ec2_config['instance'][$::ec2_instance_type]['volumes']['log']['size']
            notice("HERE2")
        }
        notice ("HERE3 $swapvol_size $swapvol_size")
    }

The first HERE0 correctly displays '(true) (true)' in the logs.
However, on the very next line, where the condition is if
$swapvol_enabled == 'true',it returns false. WTF???

Doug

On Wed, Aug 22, 2012 at 1:56 PM, Wolf Noble <wno...@datapipe.com> wrote:
> I accomplished something similar awhile back.
>
> While I've not spent much time looking at your particular problem, I think 
> this'll help point you in the direction of what you need…
>
>
>
> class mymodule::params{
>     $collector    = hiera('mymodule_collector','')
> }
>
> class mymodule::config{
>  $collector   = $mymodule::params::collector
>  $ipstring    = inline_template("<% collector.each_pair do |key, hash| 
> %><%=hash['ip']%>,<%end%>")
>  $ips         = split ($ipstring,',')
> }
>
> define mymodule::add_hosts_allow () {
>   exec { "hosts_allow_$title":
>     command => "/bin/echo \"myservice : $title : ALLOW\" >>/etc/hosts.allow",
>     unless  => "/bin/grep -c \"myservice : $title : ALLOW\" /etc/hosts.allow",
>   } #end exec
> }
>
>
> On Aug 21, 2012, at 11:00 PM, Douglas Garstang <doug.garst...@gmail.com> 
> wrote:
>
>> I know I did this once before but can't find docs on how to do it again.
>>
>> I have this in a yaml file:
>>
>> pvdisks:
>>    ec2_pvdisks_m1.small:
>>        disks: /dev/xvdb1
>>        enabled: yes
>>
>> Loading it with hiera.
>>
>> Manifest has:
>>
>>    $testkey = hiera('pvdisks')
>>    notice ("TESTKEY=$testkey[ec2_pvdisks_m1.small]")
>>
>> This is printing
>> TESTKEY=ec2_pvdisks_m1.smalldisks/dev/xvdb1enabledtrue['ec2_pvdisks_m1.small']
>>
>> which obviously is the data picked into a string.
>>
>> Doug.
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Puppet Users" group.
>> To post to this group, send email to puppet-users@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> puppet-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/puppet-users?hl=en.
>>
>
>
> ________________________________
>
> This message may contain confidential or privileged information. If you are 
> not the intended recipient, please advise us immediately and delete this 
> message. See http://www.datapipe.com/legal/email_disclaimer/ for further 
> information on confidentiality and the risks of non-secure electronic 
> communication. If you cannot access these links, please notify us by reply 
> message and we will send the contents to you.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Puppet Users" group.
> To post to this group, send email to puppet-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> puppet-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/puppet-users?hl=en.
>



-- 
Regards,

Douglas Garstang
http://www.linkedin.com/in/garstang
Email: doug.garst...@gmail.com
Cell: +1-805-340-5627

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to