A custom fact that uses regex to grab the fourth, dash-separated value from the 
hostname seems like a good way to go as it would make the $env value accessible 
globally.

Alternatively, you can use a selector within your manifests:

$env = $hostname ? {
    /-dev-/   => 'dev',
    /-int-/     => 'int',
    /-qa-/    => 'qa',
    /-prod-/ => 'prod',
}

-- Peter

> On Sep 27, 2013, at 5:47 AM, Romain Pelisse <bela...@gmail.com> wrote:
> 
> Hi all,
> 
> I'm wondering what would be the best approach to extract a value from the 
> hostname. In my case, the hostname contains the type of environment (dev, 
> int, qa, prod) and I would like to have a variable called $env which contains 
> will be extracted from such FQDNs: 
> 
> - vm-role-app-prod-1
> - vm-role-app-qa-1
> ...
> 
> I've tried using split, but it was not really practical. Any better idea ? 
> Short to deploy a custom fact to add this value to the facts..
> 
> PS: I'm using Puppet 2.7.21

-- 
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 post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to