fix(netrc): typo
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 37s
Lint Markdown files / markdown-lint (push) Successful in 10s

This commit is contained in:
Markus Pesch 2025-06-27 20:48:04 +02:00
parent 9a3dbcfa86
commit 788a1f6610
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 3 additions and 3 deletions

View File

@ -26,8 +26,8 @@ unix_users: {}
# home: /home/alice # home: /home/alice
# btrfs: false # btrfs: false
# netrc: # netrc:
# - machine_name: hostame.local # - machine: hostame.local
# login_name: username # login: username
# password: password # password: password
# shell: /bin/bash # shell: /bin/bash
# shell_rc_files: # shell_rc_files:

View File

@ -2,6 +2,6 @@
# #
# Ansible Managed # Ansible Managed
# #
{% for netrc in nix_user.value.netrc %} {% for netrc in unix_user.value.netrc %}
maschine {{ netrc.maschine }} login {{ netrc.login }} password {{ netrc.password }} maschine {{ netrc.maschine }} login {{ netrc.login }} password {{ netrc.password }}
{% endfor %} {% endfor %}