Merge pull request #373 from uumas/firefox

Fix domain not being passed for configuring firefox
This commit is contained in:
Sergio Oliveira
2020-08-26 13:28:39 -03:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -37,12 +37,12 @@ description:
options: options:
domain: domain:
description: Primary DNS domain of the IPA deployment description: Primary DNS domain of the IPA deployment
required: no required: yes
firefox_dir: firefox_dir:
description: description:
Specify directory where Firefox is installed (for example Specify directory where Firefox is installed (for example
'/usr/lib/firefox') '/usr/lib/firefox')
required: yes required: no
author: author:
- Thomas Woerner - Thomas Woerner
''' '''

View File

@@ -350,6 +350,7 @@
- name: Install - Configure firefox - name: Install - Configure firefox
ipaclient_setup_firefox: ipaclient_setup_firefox:
firefox_dir: "{{ ipaclient_firefox_dir | default(omit) }}" firefox_dir: "{{ ipaclient_firefox_dir | default(omit) }}"
domain: "{{ result_ipaclient_test.domain }}"
when: ipaclient_configure_firefox | bool when: ipaclient_configure_firefox | bool
- name: Install - Configure NIS - name: Install - Configure NIS