about summary refs log tree commit diff
path: root/base_apps.yml
diff options
context:
space:
mode:
authorPaweł Dybiec <pawel.to.malpa@gmail.com>2018-11-27 15:02:27 +0100
committerPaweł Dybiec <pawel.to.malpa@gmail.com>2018-11-27 15:02:27 +0100
commitd6db6f83a1c299da4ee7e18092c3b76c0c2cfe2d (patch)
tree79582e4d69a98cb5854c78c6a0a1a49ceb4232dd /base_apps.yml
Base system
Diffstat (limited to 'base_apps.yml')
-rw-r--r--base_apps.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/base_apps.yml b/base_apps.yml
new file mode 100644
index 0000000..b07f991
--- /dev/null
+++ b/base_apps.yml
@@ -0,0 +1,33 @@
+---
+  - name: Base
+    hosts: tamriel
+    remote_user: ansible_worker
+    become: yes
+    tasks:
+    - apt_key:
+        url: https://download.docker.com/linux/debian/gpg
+    - apt: name=apt-transport-https
+    - apt_repository:
+        repo: deb [arch=amd64] https://download.docker.com/linux/debian stretch stable 
+        update_cache: true
+    - name: Base packages
+      apt:
+        name: "{{ item }}"
+      with_items:
+      - tmux
+      - htop
+      - nginx
+      - syncthing
+      - docker-ce
+      #- wireguard
+      - hugo
+      - rsync
+      - python-pip
+    - apt:
+        upgrade: full
+    - pip:
+        name: "{{ item }}"
+      with_items:
+      - docker
+      - docker-compose
+