summaryrefslogtreecommitdiff
path: root/roles/install-packages/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'roles/install-packages/tasks')
-rw-r--r--roles/install-packages/tasks/main.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/install-packages/tasks/main.yml b/roles/install-packages/tasks/main.yml
new file mode 100644
index 0000000..ffb0bbf
--- /dev/null
+++ b/roles/install-packages/tasks/main.yml
@@ -0,0 +1,12 @@
+- name: Install required packages
+ become: true
+ apt:
+ update_cache: true
+ name:
+ - parted
+ - e2fsprogs
+ - gnupg
+ - qemu-utils
+ - python-lxml
+ - aufs-tools
+ state: present