Make package list clearer

This commit is contained in:
Anthony Rose 2019-11-23 13:19:08 +00:00
parent 06e4df5e79
commit aba63d61f1
2 changed files with 28 additions and 2 deletions

View file

@ -16,5 +16,20 @@
- name: Install CLI packages - name: Install CLI packages
become: true become: true
pkgin: pkgin:
name: ansible,git,gnupg2,mc,mozilla-rootcerts-openssl,nmap,openvpn,pkgin,py37-pip,python37,sqlite3,sudo,zsh name: '{{ packages }}'
state: present state: present
vars:
packages:
- ansible
- git
- gnupg2
- mc
- mozilla-rootcerts-openssl
- nmap
- openvpn
- pkgin
- py37-pip
- python37
- sqlite3
- sudo
- zsh

View file

@ -2,5 +2,16 @@
- name: Install GUI packages - name: Install GUI packages
become: true become: true
pkgin: pkgin:
name: adwaita-icon-theme,atril,firefox,fvwm,liberation-ttf,mate-terminal,rxvt-unicode,vim-gtk3,xlockmore-lite name: '{{ packages }}'
state: present state: present
vars:
packages:
- adwaita-icon-theme
- atril
- firefox
- fvwm
- liberation-ttf
- mate-terminal
- rxvt-unicode
- vim-gtk3
- xlockmore-lite