0d46805979
- Remove shebangs from: - ini files - unit tests - module_utils - plugins - module_docs_fragments - non-executable Makefiles - Change non-modules from '/usr/bin/python' to '/usr/bin/env python'. - Change '/bin/env' to '/usr/bin/env'. Also removed main functions from unit tests (since they no longer have a shebang) and fixed a python 3 compatibility issue with update_bundled.py so it does not need to specify a python 2 shebang. A script was added to check for unexpected shebangs in files. This script is run during CI on Shippable.
39 lines
1.5 KiB
INI
39 lines
1.5 KiB
INI
# Copyright 2016 Doalitic.
|
|
#
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# The Brook.io inventory script has the following dependencies:
|
|
# 1. A working Brook.io account
|
|
# See https://brook.io
|
|
# 2. A valid token generated through the 'API token' panel of Brook.io
|
|
# 3. The libbrook python libray.
|
|
# See https://github.com/doalitic/libbrook
|
|
#
|
|
# Author: Francisco Ros <fjros@doalitic.com>
|
|
|
|
[brook]
|
|
# Valid API token (required).
|
|
# E.g. 'Aed342a12A60433697281FeEe1a4037C'
|
|
#
|
|
api_token =
|
|
|
|
# Project id within Brook.io, as obtained from the project settings (optional). If provided, the
|
|
# generated inventory will just include the hosts that belong to such project. Otherwise, it will
|
|
# include all hosts in projects the requesting user has access to. The response includes groups
|
|
# 'project_x', being 'x' the project name.
|
|
# E.g. '2e8e099e1bc34cc0979d97ac34e9577b'
|
|
#
|
|
project_id =
|