From d6db6f83a1c299da4ee7e18092c3b76c0c2cfe2d Mon Sep 17 00:00:00 2001 From: Paweł Dybiec Date: Tue, 27 Nov 2018 15:02:27 +0100 Subject: Base system --- base_apps.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 base_apps.yml (limited to 'base_apps.yml') 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 + -- cgit 1.4.1