how to fix the following code?

$parts = split('test-test','-')
notice( $parts[0] )

see: http://docs.puppetlabs.com/references/2.6.8/function.html#split

for me it results in the following error:

can't convert String into Integer at ....:2

tried to fix it with:

notice( ${parts[0]} )
notice( "${parts[0]}" )

with the following command i got now error, but also no output

notice( "${parts}" )

i have debian squeeze running with its stable puppet package 2.6.2-5+squeeze3 puppetmaster is also debian stable 2.6.2-5+squeeze3

the question is "ripped out" of a "real" problem, i am try to get the duritong shorewall module up and running (https://github.com/duritong/puppet-shorewall)

there the shorewall::entry fails with the message:

err: Could not retrieve catalog from remote server: Error 400 on SERVER: 
can't convert String into Integer at 
/etc/puppet/modules/shorewall/manifests/entry.pp:9 on node

full code

define shorewall::entry(
    $ensure = present,
    $line
){
    $parts = split($name,'-')

    concat::fragment{$name:
        ensure => $ensure,
        content => "${line}\n",
        order => $parts[1],
        target => "/etc/shorewall/puppet/${parts[0]}",
    }
}
link|improve this question

75% accept rate
You sure this is ruby? – Alex Wayne Dec 5 '11 at 8:33
Squeegy: it's Ruby in a rather indirect way through Puppet config files. – Michael Kohl Dec 5 '11 at 8:49
I honestly can't replicate this: gist.github.com/1433433 what version of puppet are you running? – Ken Barber Dec 5 '11 at 12:25
strange, the same code doesn't work for me :( puppet version is 2.6.2-5+squeeze3 as posted above. – c33s Dec 5 '11 at 21:39
This has been bounced around, but it should never been migrated off SO in the first place; we'll keep it here for now and try to let it breathe =) – casperOne Dec 6 '11 at 3:40
show 2 more comments
feedback

migrated from serverfault.com Dec 5 '11 at 8:21

This question came from our site for system administrators and desktop support professionals.

2 Answers

It looks like you're running into Puppet issue #5127, and that the problem is with array dereference instead of the split function.

The fix is to upgrade to at least puppet version 2.6.3.

link|improve this answer
this could be the solution, if i run "$parts = split('test-test','-')" without trying to notify i get no error. i will try to upgrade as soon as possible and credit your answer if upgradeing worked. thank you very much – c33s Dec 14 '11 at 1:53
feedback

Basically, split("some-text", "-") is equivalent to $_.split("some-text", "-"). The result depends on the value of $_, which contains the last string read by gets. What you probably want to do is "some-text".split("-"), which results in ["some", "text"].

link|improve this answer
thank you, i think you answer is "ruby", i removed the ruby tag, it is a puppet question, where split is a special function. so your answer is wrong for puppet. see docs.puppetlabs.com/references/2.6.8/function.html#split – c33s Dec 5 '11 at 9:07
Oh that might be true, I didn't realize that. – mosch Dec 5 '11 at 9:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.