Install more packages to shell hosts
This commit is contained in:
parent
f89672dd59
commit
81dd2cbc50
1 changed files with 24 additions and 2 deletions
|
@ -21,10 +21,32 @@
|
||||||
- thinlinc-server
|
- thinlinc-server
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: install gnome-desktop
|
- name: install extra package groups
|
||||||
package:
|
package:
|
||||||
name: "@gnome-desktop"
|
name: "{{ package_group }}"
|
||||||
state: installed
|
state: installed
|
||||||
|
with_items:
|
||||||
|
- "@development"
|
||||||
|
- "@fonts"
|
||||||
|
- "@gnome-desktop"
|
||||||
|
- "@workstation-product"
|
||||||
|
loop_control:
|
||||||
|
loop_var: package_group
|
||||||
|
|
||||||
|
- name: install extra packages
|
||||||
|
package:
|
||||||
|
name: "{{ package }}"
|
||||||
|
state: installed
|
||||||
|
with_items:
|
||||||
|
- emacs
|
||||||
|
- rpmlint
|
||||||
|
- tcsh
|
||||||
|
- tmux
|
||||||
|
- whois
|
||||||
|
- wireshark
|
||||||
|
- zsh
|
||||||
|
loop_control:
|
||||||
|
loop_var: package
|
||||||
|
|
||||||
- name: add software packaged in roles
|
- name: add software packaged in roles
|
||||||
include_role:
|
include_role:
|
||||||
|
|
Loading…
Add table
Reference in a new issue