Skip to content

Commit

Permalink
'become: true' and add ES to main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
UNiXMIT committed Jan 23, 2024
1 parent 2e49afb commit de4e3ed
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rhel/system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@
path: /etc/security/limits.conf
line: '* hard nofile 50000'
state: present
become: true

- name: Increase Soft nofile Limit
ansible.builtin.lineinfile:
path: /etc/security/limits.conf
line: '* soft nofile 50000'
state: present
state: present
become: true
42 changes: 42 additions & 0 deletions win/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,48 @@
- name: Import ed.yml
import_tasks: ed.yml

- name: Install ES 5.0
hosts: awsEC2
gather_facts: no
tasks:
- name: Import es50.yml
import_tasks: es50.yml

- name: Install ES 6.0
hosts: awsEC2
gather_facts: no
tasks:
- name: Import es60.yml
import_tasks: es60.yml

- name: Install ES 7.0
hosts: awsEC2
gather_facts: no
tasks:
- name: Import es70.yml
import_tasks: es70.yml

- name: Install ES 8.0
hosts: awsEC2
gather_facts: no
tasks:
- name: Import es80.yml
import_tasks: es80.yml

- name: Install ES 9.0
hosts: awsEC2
gather_facts: no
tasks:
- name: Import es90.yml
import_tasks: es90.yml

- name: Setup ES
hosts: awsEC2
gather_facts: no
tasks:
- name: Import es.yml
import_tasks: es.yml

- name: Setup ADLDS
hosts: awsEC2
gather_facts: no
Expand Down

0 comments on commit de4e3ed

Please sign in to comment.