Skip to content

Commit

Permalink
Merge pull request #21 from galaxyproject/martenson-patch-1
Browse files Browse the repository at this point in the history
fix the os_family comparisons
  • Loading branch information
hexylena committed Jun 23, 2021
2 parents 4c23092 + 2170b8f commit c30e344
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pre-task in the same play as this role:
- virtualenv
- python3
become: true
when: ansible_os_family = 'Debian'
when: ansible_os_family == 'Debian'
- name: Install dependencies
package:
name:
Expand All @@ -33,7 +33,7 @@ pre-task in the same play as this role:
- python3
state: present
become: true
when: ansible_os_family = 'RedHat'
when: ansible_os_family == 'RedHat'
roles:
- galaxyproject.pulsar
```
Expand Down

0 comments on commit c30e344

Please sign in to comment.