diff --git a/ansible/machine.yml b/ansible/machine.yml index 84e0f15..13f8fcc 100644 --- a/ansible/machine.yml +++ b/ansible/machine.yml @@ -65,13 +65,9 @@ enabled: yes # ------------------------------------------------------------------------- - # Set up the exfat file system for the USB flash drive. + # Set up the USB flash drive. # ------------------------------------------------------------------------- - - name: Set up exfat - apt: - name: exfat-fuse - - name: Create USB mount directory file: path: /media/usb0 @@ -79,7 +75,7 @@ - name: Ensure USB drive is auto-mounted lineinfile: - line: "UUID=64A5-F009 /media/usb0 exfat defaults 0 0" + line: "LABEL=Muninn /media/usb0 ext4 defaults 0 0" dest: "/etc/fstab" # -------------------------------------------------------------------------