Skip to content

Commit

Permalink
Merge pull request #40 from ic4f/master
Browse files Browse the repository at this point in the history
Fix syntax error in sample code (under Requirements)
  • Loading branch information
afgane committed Nov 5, 2018
2 parents 1eed620 + afc7c33 commit 1043f1c
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 @@ -22,15 +22,15 @@ the same play as this role:
apt:
name: "{{ item }}"
become: yes
when: ansible_os_family = 'Debian'
when: ansible_os_family == 'Debian'
with_items:
- git
- python-virtualenv
- name: Install Dependencies
yum:
name: "{{ item }}"
become: yes
when: ansible_os_family = 'RedHat'
when: ansible_os_family == 'RedHat'
with_items:
- mercurial
- python-virtualenv
Expand Down

0 comments on commit 1043f1c

Please sign in to comment.