summaryrefslogtreecommitdiff
path: root/tasks/apt_packages.yaml
diff options
context:
space:
mode:
authorheqnx <root@heqnx.com>2025-07-05 12:21:29 +0300
committerheqnx <root@heqnx.com>2025-07-05 12:21:29 +0300
commit9457306a881cfe476ee0abbdba4f6f1eaa80db9d (patch)
treea0051e68286eb93381a398d2681ec5a14f5c035e /tasks/apt_packages.yaml
parent730705affa4407a9dee7c52e5deb825020da110d (diff)
downloadansible-icecast2-9457306a881cfe476ee0abbdba4f6f1eaa80db9d.tar.gz
ansible-icecast2-9457306a881cfe476ee0abbdba4f6f1eaa80db9d.zip
initial commit on a working icecast2 setup
Diffstat (limited to 'tasks/apt_packages.yaml')
-rw-r--r--tasks/apt_packages.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tasks/apt_packages.yaml b/tasks/apt_packages.yaml
new file mode 100644
index 0000000..c67f043
--- /dev/null
+++ b/tasks/apt_packages.yaml
@@ -0,0 +1,11 @@
+- name: upgrade apt packages
+ apt:
+ upgrade: dist
+
+- name: install apt packages
+ apt:
+ name: "{{ apt_packages }}"
+ state: present
+ update_cache: true
+ environment:
+ DEBIAN_FRONTEND: noninteractive