e20add1374
Paramiko version 2.0 has been released. It now uses the Python library cryptography. Installing this requires additional system packages. This commit adds in the appropriate packages required by cryptography based on its documentation [1]. An alternative approach would have been to constrain the version of Paramiko however the project describes the 1.x versions as relying on insecure dependencies [2]. [1] https://cryptography.io/en/latest/installation/ [2] http://www.paramiko.org/installing.html Change-Id: I7c761221b1fb347eccc820556ea45c58e792563b
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2015, 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.
|
|
|
|
set -euov
|
|
|
|
ROLE_NAME=$(basename $(pwd))
|
|
FUNCTIONAL_TEST=${FUNCTIONAL_TEST:-true}
|
|
|
|
pushd tests
|
|
ansible-galaxy install \
|
|
--role-file=ansible-role-requirements.yml \
|
|
--ignore-errors \
|
|
--force
|
|
|
|
ansible-playbook -i inventory \
|
|
--syntax-check \
|
|
--list-tasks \
|
|
-e "rolename=${ROLE_NAME}" \
|
|
test.yml
|
|
|
|
ansible-lint test.yml
|
|
|
|
if ${FUNCTIONAL_TEST}; then
|
|
ansible-playbook -i inventory -e "rolename=${ROLE_NAME}" test.yml
|
|
fi
|
|
popd
|