how to comment multiple lines in ansible playbook
for line i just use #
but to comment multiple line ?
Thank you
-Jay
how to comment multiple lines in ansible playbook
for line i just use #
but to comment multiple line ?
Thank you
-Jay
multiple # … playbooks are YAML, which does not have a multiline comment.
if your using linux machine. Use vi editor identify multi lines to comment and comment them
: set number
:10,20s/^/#/
Thank you Brian Coca
Thank you Shyam, it works now
Hi,
Is this because python doesn’t support multi line comment?
Regards,
Abhishek
No that is entirely unrelated.