Skip to content
Snippets Groups Projects
Verified Commit 00883875 authored by Florian Pritz's avatar Florian Pritz
Browse files

Replace deprecated pacman with_items usage with direct list


Signed-off-by: default avatarFlorian Pritz <bluewind@xinu.at>
parent d364a728
No related branches found
No related tags found
No related merge requests found
---
- name: install additional buildserver support packages
pacman: name={{item}} state=present
with_items:
- appstream-generator
pacman: name="appstream-generator" state=present
- name: install archbuild
pacman: name=systemd-swap,devtools,zsh,git,subversion,mercurial,bzr,xdelta3,ruby,tig,colordiff state=present
......
---
- name: install packages
pacman: name={{ item }} state=present
with_items:
- git
- python
- python-sqlalchemy
- python-flask
- python-flask-sqlalchemy
- python-flask-wtf
- python-flask-login
- python-flask-talisman
- python-requests
- python-scrypt
- pyalpm
- sqlite
- expac
- uwsgi-plugin-python
pacman:
state: present
name:
- git
- python
- python-sqlalchemy
- python-flask
- python-flask-sqlalchemy
- python-flask-wtf
- python-flask-login
- python-flask-talisman
- python-requests
- python-scrypt
- pyalpm
- sqlite
- expac
- uwsgi-plugin-python
- name: make security user
user: name=security shell=/bin/false home="{{ security_tracker_dir }}" createhome=no
......
- name: install sysadmin tools
pacman: name={{ item }} state=present
with_items:
- lsof
- psmisc
- htop
- nethogs
- iftop
- rsync
- tmux
- mtr
- sshfs
- dfc
- tree
- dstat
- dmidecode
- net-tools
- ncdu
- nmap
- sysstat
- iptraf-ng
- vnstat
- screen
- tcpdump
- sudo
pacman:
state: present
name:
- lsof
- psmisc
- htop
- nethogs
- iftop
- rsync
- tmux
- mtr
- sshfs
- dfc
- tree
- dstat
- dmidecode
- net-tools
- ncdu
- nmap
- sysstat
- iptraf-ng
- vnstat
- screen
- tcpdump
- sudo
- name: install misc utils
pacman: name={{ item }} state=present
with_items:
- zsh
- colordiff
- multitail
- httpie
- the_silver_searcher
- ripgrep
- cloc
- ipcalc
- calc
- wget
- neovim
- python2-neovim
- vim
- parallel
- bash-completion
- socat
- pv
- ccze
- rxvt-unicode-terminfo
- termite-terminfo
- p7zip
- unzip
- setconf
- fish
pacman:
state: present
name:
- zsh
- colordiff
- multitail
- httpie
- the_silver_searcher
- ripgrep
- cloc
- ipcalc
- calc
- wget
- neovim
- python2-neovim
- vim
- parallel
- bash-completion
- socat
- pv
- ccze
- rxvt-unicode-terminfo
- termite-terminfo
- p7zip
- unzip
- setconf
- fish
- name: start vnstatd
service: name=vnstat state=started enabled=true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment