I have a very long configuration file I am pulling from various pieces of equipment, and need it exactly as the command output gives me back. Ansible however, appears to be stripping the line breaks when I go to write the output to a file.
- name: Pull the running-config...
cisco.ios.ios_command:
commands: show running-config brief
register: running_output
...
...
- name: Copy running_config data to file...
ansible.builtin.copy:
content: "{{ running_output.stdout_lines }}"
dest: "/etc/ansible/backups/{{ inventory_hostname }}/running_config.txt"
When I debug the output, I do see the line breaks removed in stdout. But I also see a different output, (stdout_lines) as the configuration should be and not replaced with a ton of "\n"s.
Is there a way to ensure that line breaks exist in the output I send to file? Or ensure that the character that is replacing them is noted and formatted correctly?
Short answer: Use stdout instead of stdout_lines.
Details: Given the below file for testing
Read it and register the variable running_output
gives
If you use the list running_output.stdout_lines
You'll get the list
Use running_output.stdout instead
You'll get