We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7fa6781 + 6d64d2f commit 5a2914fCopy full SHA for 5a2914f
defaults/main.yml
@@ -2,4 +2,4 @@
2
# defaults file for selenium
3
selenium_install_dir: /opt
4
selenium_version: 2.46.0
5
-selenium_install_firefox: true
+selenium_install_firefox: yes
tasks/main.yml
@@ -18,7 +18,7 @@
18
apt: name={{item}}
19
with_items:
20
- firefox
21
- when: ansible_os_family == 'Debian' and selenium_install_firefox == 'true'
+ when: ansible_os_family == 'Debian' and selenium_install_firefox
22
23
- name: Install browser Xvfb
24
yum: name={{item}}
@@ -30,7 +30,7 @@
30
31
32
33
- when: ansible_os_family == 'RedHat' and selenium_install_firefox == 'true'
+ when: ansible_os_family == 'RedHat' and selenium_install_firefox
34
35
36
- name: install
0 commit comments