On 21/11/16 11:35, Amber Mehra wrote:
Hey Guys,

I need to comment multiple lines on some configuration files, Please let
me know how to accomplish this task using puppet manifest?

Best


Comments in puppet are either

# This is a line comment

or

/* this is a
   multiline
   comment
*/

The later is normally not used and the style guide prescribes that only # comments should be used. There is however nothing stopping you from commenting out larger sequences of code with /* */. Note that you cannot comment out other /* */ comments, but commenting out # comments works fine. (This is one reason for never using /* */ for normal comments, so when in a pinch you can comment out a larger block of code).

If you find that you need to do that and keep the commented out block for a longer period of time, then that is a sign of "not doing it right", and you should probably be using branches in Git and simply remove the code and keep the alternative version in a branch.

Hope that helps.
- henrik

--
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
<mailto:puppet-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/puppet-users/2f97d3f3-d094-479f-bee6-1a67c3d0b8e9%40googlegroups.com
<https://groups.google.com/d/msgid/puppet-users/2f97d3f3-d094-479f-bee6-1a67c3d0b8e9%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.


--

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/e5309cd3-6ea5-3af2-cf2e-96b60a783245%40puppet.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to