Install basic packages on insim
This commit is contained in:
parent
fdb4e4ae8e
commit
0c3048e83d
1 changed files with 12 additions and 0 deletions
|
@ -25,3 +25,15 @@
|
||||||
- include: "{{ tasks }}/cloud_setup_basic.yml"
|
- include: "{{ tasks }}/cloud_setup_basic.yml"
|
||||||
- name: set hostname (required by some services, at least postfix need it)
|
- name: set hostname (required by some services, at least postfix need it)
|
||||||
shell: "hostname {{inventory_hostname}}"
|
shell: "hostname {{inventory_hostname}}"
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: install basic packages
|
||||||
|
dnf: state=present pkg={{ item }}
|
||||||
|
with_items:
|
||||||
|
- java-devel
|
||||||
|
- postgresql-server
|
||||||
|
- httpd
|
||||||
|
- git
|
||||||
|
- maven
|
||||||
|
- wget
|
||||||
|
- emacs-nox
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue