feat: reorder options in SSHFS configuration for improved readability
Some checks failed
Nix Format Check / check-format (push) Failing after 43s

This commit is contained in:
Menno van Leeuwen 2025-03-11 22:04:56 +01:00
parent 02cf04b81a
commit e6283d1c55
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -35,7 +35,7 @@
become: true
ansible.builtin.lineinfile:
path: /etc/fstab
line: "sshfs#{{ sshfs_user }}@{{ sshfs_host }}: {{ remote_path }} fuse.sshfs _netdev,credentials=/etc/sshfs-credentials,port={{ sshfs_port }},reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,uid=1000,gid=1000 0 0"
line: "sshfs#{{ sshfs_user }}@{{ sshfs_host }}: {{ remote_path }} fuse.sshfs credentials=/etc/sshfs-credentials,port={{ sshfs_port }},reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,uid=1000,gid=1000,_netdev 0 0"
state: present
regexp: "^sshfs#.*{{ remote_path }}"
backup: true