Thanks Steven and jcbollinger for the suggestion. 

Either solution works for me and I have parameterized define type 
foo::install and it works. 

Since I will be calling foo module multiple time for a node I have to keep 
foo/init.pp as defined type. 
 
Thanks,
Rajgourav Jain

On Monday, November 17, 2014 1:36:25 PM UTC+5:30, Rajgourav Jain wrote:
>
> Hi,
>
> I have written two defined type and trying to use some variables between 
> them. 
>
> ----foo/manifest/init.pp ------------
> define foo( $x=undef, $y=undef)
> {
>
>   if $x == undef {
>    $xx = $defualt_x
>   } else {
>     $xx  = $x
>   }
>
> if $y == undef {
>    $yy $defualt_y
>   } else {
>     $yy= $y
>   }
>
>  fooinstall {$xx:}
> }
>
>
> --------------foo/manifest/install.pp------------------- 
> define foo::install (){
>   if  $yy= "some text" 
>   { 
>      puppet code here
>    }
>   else {
>      puppet code here 
>   }
> }
>
>
> ------ sites.pp ----
> node 'hostnam-l.domain.com'
> {
> foo { "Aname" :
>    $x => a,
>    $y => b,
>  }
> }
>
> Could you suggest how can I make this code work. I am not able to access 
> $xx and $yy in defined type foo::install.
>
> Thanks,
> Rajgourav Jain
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/0ce0f818-066a-4506-ae34-ad2d3750d9e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to