summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--local.yml3
-rw-r--r--tasks/dependencies.yml13
2 files changed, 16 insertions, 0 deletions
diff --git a/local.yml b/local.yml
index e69de29..99ae0a0 100644
--- a/local.yml
+++ b/local.yml
@@ -0,0 +1,3 @@
+- hosts: localhost
+ tasks:
+ - include: tasks/dependencies.yml
diff --git a/tasks/dependencies.yml b/tasks/dependencies.yml
new file mode 100644
index 0000000..9332322
--- /dev/null
+++ b/tasks/dependencies.yml
@@ -0,0 +1,13 @@
+- name: Update Aptitude
+ become: true
+ apt:
+ update_cache: true
+ tags:
+ - always
+
+- name: Install dependencies
+ become: true
+ apt:
+ name: [curl, git, zsh, docker, fzf, tmux, stow, unzip, zip]
+ tags:
+ - always