Skip to content

Commit

Permalink
Ansible: Replace sudo with become
Browse files Browse the repository at this point in the history
Ansible 2 replaced "sudo" with "become".
  • Loading branch information
Lorin Hochstein committed Aug 1, 2016
1 parent 16ada92 commit c29c323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devstack.yml
Expand Up @@ -27,7 +27,7 @@
- name: install git
apt: "name=git update_cache=yes"
sudo: True
become: True

- name: checkout devstack
git: repo={{ devstack_repo }} dest=/home/vagrant/devstack version={{ version }} accept_hostkey=yes
Expand All @@ -40,5 +40,5 @@

- name: enable eth2
command: ip link set dev eth2 up
sudo: True
become: True

0 comments on commit c29c323

Please sign in to comment.