8fb8204493
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>
29 lines
966 B
YAML
29 lines
966 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: Git clone gear.
|
|
become: yes
|
|
git:
|
|
dest: "{{ gear_git_dest }}"
|
|
refspec: "{{ gear_git_refspec|default(omit) }}"
|
|
repo: "{{ gear_git_uri }}"
|
|
update: "{{ gear_git_update|default(omit) }}"
|
|
version: "{{ gear_git_version|default(omit) }}"
|
|
|
|
- name: Set gear_pip_name to local git repo.
|
|
set_fact:
|
|
gear_pip_name: "file://{{ gear_git_dest }}"
|
|
|
|
- include: pip.yaml
|