11 lines
169 B
YAML
11 lines
169 B
YAML
---
|
|
- hosts: ubuntu
|
|
become: yes
|
|
tasks:
|
|
|
|
- name: update apt cache and install gpg-agent
|
|
apt:
|
|
update_cache: yes
|
|
name: gpg-agent
|
|
state: present
|