commit 40b0128c93c395c60ae7ea3734aca1bc17bc8412 Author: Micha Gläß-Stöcker Date: Thu Sep 8 12:52:09 2022 +0200 initial commit diff --git a/handlers/main.yml b/handlers/main.yml new file mode 100644 index 0000000..8512c01 --- /dev/null +++ b/handlers/main.yml @@ -0,0 +1,3 @@ +- name: Update apt cache + apt: + update_cache: yes diff --git a/meta/main.yml b/meta/main.yml new file mode 100644 index 0000000..b32a44c --- /dev/null +++ b/meta/main.yml @@ -0,0 +1,2 @@ +--- +galaxy_info: diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..89d5bdf --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,23 @@ + - name: Install a list of packages + apt: + name: "{{ packages }}" + vars: + packages: + - zsh + - mc + - ncdu + - dfc + - net-tools + - molly-guard + - htop + - cifs-utils + - nfs-common + - bridge-utils + - s3fs + - build-essential + - git + - rsync + - dnsutils + - screen + - iotop + - lshw