So my Vagrant file contains the following
puppet.facter = {
"username22" => "[email protected]",
"installX11" => "please",
"Paul" => paul,
"password" => "0adsjpqnvpqaljsdfadkafj32lkj032lkn34k2",
}
In one of my init.pp files I have
notify{"The value of installX11 is $installX11":}
notify{"The value of username22 is ${username22}":}
notify{"The value of password is ${password}":}
notify{"The value of Paul is $Paul":}
The output of the Vagrant run
Notice: The value of username22 is [email protected]
Notice: /Stage[main]/X11vnc/Notify[The value of username22 is
[email protected]]/message: defined 'message' as 'The value of
username22 is [email protected]'
This is good
Notice: The value of password is 0adsjpqnvpqaljsdfadkafj32lkj032lkn34k2
Notice: /Stage[main]/X11vnc/Notify[The value of password
is 0adsjpqnvpqaljsdfadkafj32lkj032lkn34k2]/message: defined 'message' as
'The value of password is 0adsjpqnvpqaljsdfadkafj32lkj032lkn34k2'
This is also good, but the other two variables don't get set for some
reason.
Notice: The value of installX11 is
Notice: /Stage[main]/X11vnc/Notify[The value of installX11 is ]/message:
defined 'message' as 'The value of installX11 is '
Notice: The value of Paul is
Notice: /Stage[main]/X11vnc/Notify[The value of Paul is ]/message: defined
'message' as 'The value of Paul is '
I am out of ideas on why my other two variables don't get set properly.
Ideas?
Thanks in advance for any help.
-Paul
--
You received this message because you are subscribed to the Google Groups
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.