diff --git a/inventories/host_vars/console.yml b/inventories/host_vars/console.yml new file mode 100644 index 0000000..cebabea --- /dev/null +++ b/inventories/host_vars/console.yml @@ -0,0 +1,31 @@ +--- + +apt: + - ansible + - curl + - emacs + - ffmpegthumbnailer + - gimp + - git + - golang + - gpgv2 + - gprename + - heif-thumbnailer + - htop + - jq + - libaacs0 + - libbluray-bdj + - libbluray2 + - libdvd-pkg + - libdvdcss + - libheif1 + - openssh-server + - openssl + - p7zip-full + - python3-pip + - samba-common + - vim + - vlc + - wireshark + - xrdp + - zsh diff --git a/tasks/console/apt.yml b/tasks/console/apt.yml index e9114c2..e2ede98 100644 --- a/tasks/console/apt.yml +++ b/tasks/console/apt.yml @@ -1,30 +1,5 @@ - name: Install Console modules ansible.builtin.apt: pkg: - - curl - - emacs - - ffmpegthumbnailer - - gimp - - git - - golang - - gpgv2 - - gprename - - heif-thumbnailer - - htop - - jq - - libaacs0 - - libbluray-bdj - - libbluray2 - - libdvd-pkg - - libdvdcss - - libheif1 - - openssh-server - - openssl - - p7zip-full - - python3-pip - - samba-common - - vim - - vlc - - wireshark - - xrdp - - zsh + "{{ item }}" + loop: "{{ apt }}"