On Tue, 2009-10-27 at 17:25 +0100, Matthias Saou wrote: > I've got the following working fine with puppet 0.25.1, which was > previously impossible with 0.24 (yepee!) : > > define dirs ( $dirs = [] ) { > # Parent directory for the ones below > file { "/nfs/skel/${title}": ensure => directory } > # Make sure the File namevar is unique by prepending the path > $fulldirs = regsubst($dirs, ".*", "/nfs/skel/${title}/\0") > file { $fulldirs: ensure => directory } > } > > Then I call it in a way similar to this : > > dirs { "dir1": dirs => [ "inc", "bin" ] > dirs { "dir2": dirs => [ "inc", "bin" ] > > But then I see warnings in the puppetmaster log : > > Puppet (warning): Unrecognised escape sequence '\0' in file foo.pp [...]
I think puppet string interpolation is warning you that inserting a null byte is forbidden. Try to escape the \0 so that it isn't eaten by the double quote interpolation: $fulldirs = regsubst($dirs, ".*", "/nfs/skel/${title}/\\0") -- Brice Figureau Follow the latest Puppet Community evolutions on www.planetpuppet.org! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---