feat: enhance SSHFS configuration in Ansible tasks for improved security and flexibility
Some checks failed
Nix Format Check / check-format (push) Failing after 39s

This commit is contained in:
Menno van Leeuwen 2025-03-11 21:38:57 +01:00
parent cb4206c3b7
commit a198991d2e
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -1,6 +1,14 @@
--- ---
- name: Configure SSHFS - name: Configure SSHFS
block: block:
- name: SSHFS Details
ansible.builtin.set_fact:
sshfs_user: "{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/username') }}"
sshfs_pass: "{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/new_password') }}"
sshfs_host: "{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/host') }}"
sshfs_port: 23
remote_path: /mnt/storage-box
- name: Install SSHFS package - name: Install SSHFS package
become: true become: true
ansible.builtin.package: ansible.builtin.package:
@ -10,43 +18,33 @@
- name: Create mount point directory - name: Create mount point directory
become: true become: true
ansible.builtin.file: ansible.builtin.file:
path: /mnt/storage-box path: "{{ remote_path }}"
state: directory state: directory
mode: '0755' mode: '0755'
- name: Create credentials file - name: Create credentials file for SSHFS
become: true become: true
ansible.builtin.copy: ansible.builtin.copy:
dest: /root/.smbcredentials content: "username={{ sshfs_user }}\npassword={{ sshfs_pass }}"
content: | dest: /etc/sshfs-credentials
username=u451316
password={{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/new_password') }}
mode: '0600' mode: '0600'
owner: root
group: root
- name: Create password file for SSHFS - name: Add fstab entry for SSHFS
become: true
ansible.builtin.copy:
dest: /root/.sshfs_password
content: "{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/new_password') }}"
mode: '0600'
- name: Add fstab entry for SSHFS mount
become: true become: true
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/fstab path: /etc/fstab
line: "sshfs#{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/username') }}@{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/host') }}: /mnt/storage-box fuse.sshfs defaults,_netdev,port=23,password_stdin,password_file=/root/.sshfs_password,uid=1000,gid=100,reconnect,allow_other,ServerAliveInterval=15 0 0" 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"
regexp: "^sshfs#.*{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/host') }}:"
state: present state: present
notify: Systemctl daemon-reload regexp: "^sshfs#.*{{ remote_path }}"
backup: true
- name: Mount SSHFS storage - name: Mount SSHFS filesystem
become: true become: true
ansible.builtin.mount: ansible.builtin.command:
path: /mnt/storage-box cmd: "sshfs {{ sshfs_user }}@{{ sshfs_host }}:/ {{ remote_path }} -o port={{ sshfs_port }},password_stdin,_netdev,reconnect,ServerAliveInterval=15,ServerAliveCountMax=3"
src: "sshfs#{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/username') }}@{{ lookup('onepassword', 'op://j7nmhqlsjmp2r6umly5t75hzb4/5j5y5axfjr3f3sn5nixb6htg4y/host') }}:" stdin: "{{ sshfs_pass }}"
fstype: fuse.sshfs register: mount_result
opts: "defaults,_netdev,port=23,password_stdin,password_file=/root/.sshfs_password,uid=1000,gid=100,reconnect,allow_other,ServerAliveInterval=15" changed_when: mount_result.rc == 0
state: mounted failed_when: mount_result.rc != 0 and "already mounted" not in mount_result.stderr
- name: Handlers
ansible.builtin.meta: flush_handlers