You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just used the example of "Export templates" in netbox documentation:
Admin panel > Extras > Export Templates
{% for d in queryset %}{% if d.status and d.primary_ip %}define host{
use generic-switch
host_name {{ d.name }}
address {{ d.primary_ip.address.ip }}
}
{% endif %}{% endfor %}
And the exported file has windows line break (CRLF - Carriage Return - "\r").
$ file netbox_devices
netbox_devices: ASCII text, with CRLF line terminators
I think this shouldn't happen. And it should be Unix line terminators "\n".
Env info:
Netbox develop branch with latest docker image (docker compose).
The text was updated successfully, but these errors were encountered:
Hello,
I just used the example of "Export templates" in netbox documentation:
And the exported file has windows line break (CRLF - Carriage Return - "\r").
I think this shouldn't happen. And it should be Unix line terminators "\n".
Env info:
Netbox
develop
branch with latest docker image (docker compose).The text was updated successfully, but these errors were encountered: