Hi,

I got a file resource

  file {'/usr/java/jboss-as/server/somesoftware/deploy/jontram-ds.xml':
    ensure  => file,
    owner   => 'root',
    group   => 'root',
    mode    => '0655',
    content => template('somesoftware/jboss/jontram-ds.xml.erb'),
    require => [ Class['somesoftware::cpfiles'], 
somesoftware::mariadb::createdb [ $db_name ] ],
  }

The second last line is obviously to long (over 80 lines). It works in one 
line but I get a puppet-lint error. I would like to cut it it two. My first 
thought was to use the '\'

like 
    require => [ Class['somesoftware::cpfiles'],\
somesoftware::mariadb::createdb [ $db_name ]
  }

but then I get an error

Error: Could not retrieve catalog from remote server: Error 400 on SERVER: 
Syntax error at '\'; expected ']' at  ...

It works if I just press enter at the end of the line and write the rest on 
the next line (without the \).

So I wonder is it right to not use \ for line wrapping? If yes where can I 
find documentation about that behavior?


-- 
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/059e205f-f40a-4a58-ad17-cb787cea32a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to