Remove remnants of obsolete fireball mode.
This commit is contained in:
parent
ac7edef2be
commit
cd47cb2a15
8 changed files with 0 additions and 60 deletions
|
@ -1752,11 +1752,6 @@
|
|||
<changefreq>weekly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://docs.ansible.com/ansible/fireball_module.html</loc>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://docs.ansible.com/ansible/gem_module.html</loc>
|
||||
<changefreq>weekly</changefreq>
|
||||
|
|
|
@ -37,13 +37,6 @@ the SSH connection (this key is different for every host, and is also regenerate
|
|||
|
||||
By default, Ansible will use port 5099 for the accelerated connection, though this is configurable. Once running, the daemon will accept connections for 30 minutes, after which time it will terminate itself and need to be restarted over SSH.
|
||||
|
||||
Accelerated mode offers several improvements over the (deprecated) original fireball mode from which it was based:
|
||||
|
||||
* No bootstrapping is required, only a single line needs to be added to each play you wish to run in accelerated mode.
|
||||
* Support for sudo commands (see below for more details and caveats) is available.
|
||||
* There are fewer requirements. ZeroMQ is no longer required, nor are there any special packages beyond python-keyczar
|
||||
* python 2.5 or higher is required.
|
||||
|
||||
In order to use accelerated mode, simply add `accelerate: true` to your play::
|
||||
|
||||
---
|
||||
|
|
|
@ -336,7 +336,6 @@ PERSISTENT_CONNECT_RETRIES = get_config(p, 'persistent_connection', 'connect
|
|||
PERSISTENT_CONNECT_INTERVAL = get_config(p, 'persistent_connection', 'connect_interval', 'ANSIBLE_PERSISTENT_CONNECT_INTERVAL', 1, value_type='integer')
|
||||
|
||||
# obsolete -- will be formally removed
|
||||
ZEROMQ_PORT = get_config(p, 'fireball_connection', 'zeromq_port', 'ANSIBLE_ZEROMQ_PORT', 5099, value_type='integer')
|
||||
ACCELERATE_PORT = get_config(p, 'accelerate', 'accelerate_port', 'ACCELERATE_PORT', 5099, value_type='integer')
|
||||
ACCELERATE_TIMEOUT = get_config(p, 'accelerate', 'accelerate_timeout', 'ACCELERATE_TIMEOUT', 30, value_type='integer')
|
||||
ACCELERATE_CONNECT_TIMEOUT = get_config(p, 'accelerate', 'accelerate_connect_timeout', 'ACCELERATE_CONNECT_TIMEOUT', 1.0, value_type='float')
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
||||
#
|
||||
# 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/>.
|
||||
|
||||
ANSIBLE_METADATA = {'status': ['deprecated'],
|
||||
'supported_by': 'community',
|
||||
'version': '1.0'}
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: fireball
|
||||
short_description: Enable fireball mode on remote node
|
||||
version_added: "0.9"
|
||||
deprecated: "in favor of SSH with ControlPersist"
|
||||
description:
|
||||
- Modern SSH clients support ControlPersist which is just as fast as
|
||||
fireball was. Please enable that in ansible.cfg as a replacement
|
||||
for fireball.
|
||||
- Removed in ansible 2.0.
|
||||
author:
|
||||
- "Ansible Core Team"
|
||||
- "Michael DeHaan"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
'''
|
||||
|
|
@ -42,7 +42,6 @@ except ImportError:
|
|||
BLACKLIST_MODULES = frozenset((
|
||||
'async_wrapper',
|
||||
'accelerate',
|
||||
'fireball',
|
||||
))
|
||||
|
||||
def get_docstring(filename, verbose=False):
|
||||
|
|
|
@ -33,7 +33,6 @@ python.default_version 27
|
|||
depends_lib-append port:py${python.version}-jinja2 \
|
||||
port:py${python.version}-paramiko \
|
||||
port:py${python.version}-yaml
|
||||
# fireball mode requires py-zmq, py-asn1, py-crypto and py-keyczar
|
||||
|
||||
patch {
|
||||
fs-traverse f ${worksrcpath} {
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
async_wrapper
|
||||
fireball
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
lib/ansible/modules/utilities/logic/async_status.py
|
||||
lib/ansible/modules/utilities/helper/_fireball.py
|
||||
lib/ansible/modules/utilities/helper/_accelerate.py
|
||||
|
|
Loading…
Reference in a new issue