ansible-role-gear/tasks/install/pip.yaml
Paul Belanger 8fb8204493
Initial commit
Create an ansible role to manage gear / gearman.

Change-Id: Ia1c66f7dadcc19e8f4bf54694423cec38e95804d
Depends-On: I72494301b20c3e4a4675d7cde5725540d666e8b6
Depends-On: Ie4e01a51e75fcf869e5307ef4a24996231d91664
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2018-02-18 19:11:39 -05:00

24 lines
960 B
YAML

# Copyright 2015 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
---
- name: Install gear using pip.
become: yes
pip:
executable: "{{ gear_pip_executable|default(omit) }}"
extra_args: "{{ gear_pip_extra_args|default(omit) }}"
name: "{{ gear_pip_name }}"
version: "{{ gear_pip_version|default(omit) }}"
virtualenv_python: "{{ gear_pip_virtualenv_python|default(omit) }}"
virtualenv: "{{ gear_pip_virtualenv|default(omit) }}"