This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: 192.168.56.104 | |
vars_files: | |
- master_vars.yml | |
tasks: | |
- name: "Creating a directory" | |
file: | |
state: directory | |
path: "{{ directory_path }}" | |
- name: "Copying hdfs-site.xml" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: all | |
tasks: | |
- name: "Sending Hadoop from Controller node to Hosts" | |
copy: | |
src: "/root/hadoop-1.2.1-1.x86_64.rpm" | |
dest: "/root" | |
- name: "Sending JDK to Host Systems" | |
copy: | |
dest: "/root" |
NewerOlder