Fix: remove loop for apt

This commit is contained in:
Bertrand Benjamin 2020-02-24 07:06:06 +01:00
parent a5ba3cc48a
commit 09c89e092a
2 changed files with 25 additions and 28 deletions

View File

@ -6,26 +6,25 @@
- name: Install base CLI packages
apt:
name: "{{ item }}"
name:
- sudo
- wget
- curl
- zsh
- vim
- tmux
- ruby
- git
- tig
- openssh-server
- sshfs
- htop
- iftop
- iotop
- glances
- ranger
- rxvt-unicode-256color
state: present
with_items:
- sudo
- wget
- curl
- zsh
- vim
- tmux
- ruby
- git
- tig
- openssh-server
- sshfs
- htop
- iftop
- iotop
- glances
- ranger
- rxvt-unicode-256color
- name: Install extra CLI packages
apt:

View File

@ -1,20 +1,18 @@
---
- name: Remove depot docker version
apt:
name: "{{ item }}"
name:
- docker
- docker-engine
- docker.io
state: absent
with_items:
- docker
- docker-engine
- docker.io
- name: Install tool to use apt with https
apt:
name: "{{ item }}"
name:
- apt-transport-https
- ca-certificates
state: present
with_items:
- apt-transport-https
- ca-certificates
- name: Add Docker apt key.
apt_key: