mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 02:24:09 +00:00
add htfs and ntfs support
This commit is contained in:
parent
1764a4ab25
commit
e1e6896aad
3 changed files with 9 additions and 0 deletions
|
|
@ -45,4 +45,8 @@ base_packages:
|
|||
- lsof
|
||||
- sysstat
|
||||
- arch-wiki-lite
|
||||
|
||||
filesystem_packages:
|
||||
- dosfstools
|
||||
- hfsprogs
|
||||
- ntfs-3g
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
4
roles/filesystems/tasks/main.yml
Normal file
4
roles/filesystems/tasks/main.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- name: Install filesystem packages
|
||||
pacman: name={{ item }} state=present
|
||||
with_items: "{{ filesystem_packages }}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue