Use package so it's OS agnostic

This commit is contained in:
Jake Howard 2020-04-26 11:25:01 +01:00
parent 3e523bd04b
commit 4aa5a7d5a8
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
- name: Install Base Packages
apt:
package:
name: "{{ item }}"
become: true
loop:

View File

@ -1,5 +1,5 @@
- name: Install docker-compose
apt:
package:
name: docker-compose
become: true

View File

@ -1,5 +1,5 @@
- name: Install OpenSSH
apt:
package:
name: openssh-server
become: true