Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

String substitution in Puppet?

Tags:

Is it possible to do a string substitution/transformation in Puppet using a regular expression?

If $hostname is "web1", I want $hostname_without_number to be "web". The following isn't valid Puppet syntax, but I think I need something like this:

$hostname_without_number = $hostname.gsub(/\d+$/, '')
like image 961
richardkmiller Avatar asked May 02 '12 16:05

richardkmiller


2 Answers

Yes, it is possible.

Check the puppet function reference: http://docs.puppetlabs.com/references/2.7.3/function.html

There's a regular expression substitution function built in. It probably calls the same underlying gsub function.

$hostname_without_number = regsubst($hostname, '\d+$', '')

Or if you prefer to actually call out to Ruby, you can use an inline ERB template:

$hostname_without_number = inline_template('<%= hostname.gsub(/\d+$/, "") %>')
like image 111
freiheit Avatar answered Nov 04 '22 23:11

freiheit


In this page:

https://blog.kumina.nl/2010/03/puppet-tipstricks-testing-your-regsubst-replacings-2/comment-page-1/

it is quite well explained and there is a fantastic trick for testing your regular expressions with irb.

Whith this link and the answer of freiheit I could resolve my problem with substitution of '\' for '/'.

$programfiles_sinbackslash = regsubst($env_programfiles,'\','/','G')

like image 22
user45949 Avatar answered Nov 05 '22 01:11

user45949