This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/roles/os_config/tasks/pkgs.yml

19 lines
293 B
YAML
Raw Normal View History

2022-12-22 19:18:27 +00:00
# vim: ft=yaml.ansible
---
- name: Upgrade system packages
2022-12-22 22:34:09 +00:00
apt:
2022-12-22 19:18:27 +00:00
update_cache: true
upgrade: full
- name: Install packages via apt
apt:
name: "{{ pkgs }}"
state: present
vars:
pkgs:
- apparmor
- haveged
2022-12-23 15:57:37 +00:00
- needrestart
- python3-pip
2022-12-22 19:18:27 +00:00
- ufw