0943a630bb
The ceph-ansible project has created a new library which is held in the root folder. We need to ensure that the library path is included. Additionally a callback plugins directory inside plugins/callback has been added, along with an action plugins directory inside plugins/actions. Finally, the sed command we use to replace the default roles directory was causing issues in that it applied to any lines that were not necessarily the roles_path. This PR adjusts the sed to ensure it is only the roles_path line that is replaced. Change-Id: I0d30d749ef2e00c1d199e53a837462619a9b2650
32 lines
1.5 KiB
INI
32 lines
1.5 KiB
INI
# Copyright 2016, Rackspace US, 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.
|
|
|
|
# WARNING:
|
|
# This file is use by all OpenStack-Ansible roles for testing purposes.
|
|
# Any changes here will affect all OpenStack-Ansible role repositories
|
|
# with immediate effect.
|
|
|
|
# PURPOSE:
|
|
# This is a set of configuration options for Ansible.
|
|
|
|
[defaults]
|
|
transport = ssh
|
|
host_key_checking = False
|
|
control_path = /tmp/%%h-%%r
|
|
ssh_args = -o ControlMaster=no -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o ServerAliveInterval=64 -o ServerAliveCountMax=1024 -o Compression=no -o TCPKeepAlive=yes -o VerifyHostKeyDNS=no -o ForwardX11=no -o ForwardAgent=yes
|
|
library = $HOME/.ansible/plugins/library:$HOME/.ansible/roles/ceph-ansible/library
|
|
callback_plugins = $HOME/.ansible/plugins/callback:$HOME/.ansible/roles/ceph-ansible/plugins/callback
|
|
action_plugins = $HOME/.ansible/plugins/action:$HOME/.ansible/roles/ceph-ansible/plugins/actions
|
|
roles_path = $HOME/.ansible/roles:$HOME/.ansible/testing-role
|