Clean up punctuation

Change-Id: If4f3c6aaab636d375b61a56ca6db2f2c35bbb904
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-12-07 21:05:43 -05:00
parent 9a71107491
commit af78311a05
4 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
---
- name: Define virtualenv_build_depends.
- name: Define virtualenv_build_depends
set_fact:
virtualenv_build_depends: "{{ __virtualenv_build_depends | list }}"
when: virtualenv_build_depends is not defined

View File

@ -12,14 +12,14 @@
# License for the specific language governing permissions and limitations
# under the License.
---
- name: Git clone virtualenv.
- name: Git clone virtualenv
become: yes
git:
dest: "{{ virtualenv_git_dest }}"
repo: "{{ virtualenv_git_uri }}"
version: "{{ virtualenv_git_version }}"
- name: Pip install virtualenv from local git repo.
- name: Pip install virtualenv from local git repo
become: yes
pip:
extra_args: "{{ virtualenv_pip_extra_args|default(omit) }}"

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
---
- name: Install virtualenv using pip.
- name: Install virtualenv using pip
become: yes
pip:
extra_args: "{{ virtualenv_pip_extra_args|default(omit) }}"

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
---
- name: Include OS-specific variables.
- name: Include OS-specific variables
include_vars: "{{ ansible_os_family }}.yaml"
- include: "{{ virtualenv_task }}.yaml"