Skip to content

Commit

Permalink
fix: reestablish hadoop conf link
Browse files Browse the repository at this point in the history
  • Loading branch information
giem-git authored and rpignolet committed Mar 29, 2024
1 parent 2784de6 commit 565d9df
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions roles/hdfs/ranger/tasks/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,9 @@
./enable-hdfs-plugin.sh
args:
chdir: "{{ ranger_hdfs_install_dir }}"

- name: Reestablish symbolic link from etc/hadoop in {{ hadoop_install_dir }} to {{ hadoop_client_conf_dir }}
ansible.builtin.file:
src: "{{ hadoop_client_conf_dir }}"
dest: "{{ hadoop_install_dir }}/etc/hadoop"
state: link
6 changes: 6 additions & 0 deletions roles/yarn/ranger/tasks/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@
./enable-yarn-plugin.sh
args:
chdir: "{{ ranger_yarn_install_dir }}"

- name: Reestablish symbolic link from etc/hadoop in {{ hadoop_install_dir }} to {{ hadoop_client_conf_dir }}
ansible.builtin.file:
src: "{{ hadoop_client_conf_dir }}"
dest: "{{ hadoop_install_dir }}/etc/hadoop"
state: link

0 comments on commit 565d9df

Please sign in to comment.