add htfs and ntfs support

This commit is contained in:
Pig Monkey 2015-12-07 14:06:57 -08:00
parent 1764a4ab25
commit e1e6896aad
3 changed files with 9 additions and 0 deletions

View file

@ -45,4 +45,8 @@ base_packages:
- lsof
- sysstat
- arch-wiki-lite
filesystem_packages:
- dosfstools
- hfsprogs
- ntfs-3g

View file

@ -30,6 +30,7 @@
- { role: mapping, tags: ['mapping'] }
- { role: sound, tags: ['sound'] }
- { role: archive, tags: ['archive'] }
- { role: filesystems, tags: ['filesystems'] }
vars_prompt:
- name: user_password
prompt: "Enter desired user password"

View file

@ -0,0 +1,4 @@
---
- name: Install filesystem packages
pacman: name={{ item }} state=present
with_items: "{{ filesystem_packages }}"