Hi,
I made some comments in your code below. Most importantly perhaps is
showing you where you have that syntax error.
The error you get should tell you both line and the position on the line
where the error occurs, but sometimes it is not possible for the parser
to recognize a larger block of text and the error is not precise.
On 09/05/17 16:02, Quentin lenglet wrote:
Hi
My code looks like that:
# == Class: lpsc::config
The syntax in the heading comment for classes and defines are used for
documentation (generated by 'puppet string' - we use Yard tags and
Markdown markup language for these comments. What you have here may be
a surprise to you if you want to generate documentation.
class lpsc::config inherits lpsc {
define lpsc::builder (
String $ssh_file,
String $ssh_key,
$ensure => present,
The syntax error is here, it should be a '=', not a '=>'.
) {
file_line { "${ssh_key}":
line => "${ssh_key}",
path => "${ssh_file}",
ensure => $ensure,
}
}
if ssh_key, and ssh_file are already strings, you do not need to
interpolate them. You can just write:
line => $ssh_key
You win nothing by interpolating a single string. (It is just slower).
file { '/etc/ssh/sshd_config':
ensure => present,
owner => 'root',
group => 'root',
mode => '0600',
}
if ($lpsc::ssh_keys == undef)
{
notify{"Pas de clef à rajouter":}
}
else
{
notify{"On peut rajouter une clef ${lpsc::ssh_keys}":}
$demofiles = "/root/.ssh/test"
# file {$demofiles:
# ensure => present,
# replace => 'no',
# owner => 'root',
# group => 'root',
# mode => '0600',
# content => $lpsc::ssh_keys[0],
#}
$lpsc::ssh_keys.each |$key|{
lpsc::builder{"$key":
ensure => 'present',
ssh_file => $demofiles,
ssh_key => "$key",
You want to indent the lines in the body of 'each' by two spaces.
}
}
}
Best,
- henrik
--
Visit my Blog "Puppet on the Edge"
http://puppet-on-the-edge.blogspot.se/
--
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/oesjiq%24vgv%241%40blaine.gmane.org.
For more options, visit https://groups.google.com/d/optout.