forked from tapajyotideb/Menu-Python-Ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.yml
34 lines (20 loc) · 817 Bytes
/
client.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- hosts: client
tasks:
- name: Update core-site.xml file
blockinfile:
path: /etc/hadoop/core-site.xml
insertafter: "<configuration>"
block: |
<property>
<name>fs.default.name</name>
<value>hdfs://{{ groups['master'][0] }}:9001</value>
</property>
- name: Updating mapred-site.xml file
blockinfile:
path: /etc/hadoop/mapred-site.xml
insertafter: "<configuration>"
block: |
<property>
<name>mapred.job.tracker</name>
<value>{{ groups['jobtracker'][0] }}:9002</value>
</property>