starteam / starcellbio_html

2 stars 7 forks source link

Fix Ansible script #777

Closed jmclaus closed 6 years ago

jmclaus commented 6 years ago

@idegtiarov @annagav @laleman @pdpinch

I had to do a full reinstall on my machine and found out the Ansible script would stall with latest version. Reason, the command:

sudo: yes

is deprecated and should be replaced by the following combination:

become: true
become_method: sudo

Please look at this Ansible doc.