summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Yann Wettengel <niyawe@niyawe.de>2018-08-31 22:18:26 +0200
committerNiklas Yann Wettengel <niyawe@niyawe.de>2018-08-31 22:18:26 +0200
commit9223a53f37214adc9b1e996a15cbc8d8a960ffce (patch)
treefe3ae9c92e81eae02f582f54a153bab3108dd501
parentb97d70626b433ca1858346ad8fe84ecf43c7b607 (diff)
new pacman syntax
-rw-r--r--roles/install_admin_packages/tasks/main.yml23
1 files changed, 11 insertions, 12 deletions
diff --git a/roles/install_admin_packages/tasks/main.yml b/roles/install_admin_packages/tasks/main.yml
index 23f591a..e359745 100644
--- a/roles/install_admin_packages/tasks/main.yml
+++ b/roles/install_admin_packages/tasks/main.yml
@@ -4,19 +4,18 @@
update_cache: yes
- name: install packages for admins
pacman:
- name: '{{ item }}'
+ name:
+ - bash-completion
+ - bridge-utils
+ - htop
+ - mosh
+ - nload
+ - rxvt-unicode-terminfo
+ - screen
+ - tmux
+ - vim
+ - tcpdump
state: present
- with_items:
- - bash-completion
- - bridge-utils
- - htop
- - mosh
- - nload
- - rxvt-unicode-terminfo
- - screen
- - tmux
- - vim
- - tcpdump
- name: create bash_profile
lineinfile: