You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
713 B
YAML

---
- name: Remove the non HA jobtracker package
apt: pkg={{ item }} state=absent
with_items:
- hadoop-0.20-mapreduce-jobtracker
tags:
- jobtracker
- mapred
- name: Install the HA jobtracker package
apt: pkg={{ item }} state={{ hadoop_pkg_state }}
with_items:
- hadoop-0.20-mapreduce-jobtrackerha
tags:
- jobtracker
- mapred
- name: Install the hue-plugins package, needed to access the jobtracker from hue
apt: pkg={{ item }} state={{ hadoop_pkg_state }}
with_items:
- hue-plugins
tags:
- jobtracker
- mapred
- name: Install the dsh package
apt: pkg={{ item }} state={{ hadoop_pkg_state }}
with_items:
- dsh
tags:
- jobtracker
- mapred