2012-10-01 18:40:39 +02:00
# -*- mode: python -*-
2015-07-04 05:57:53 +02:00
# 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/>.
2012-10-01 18:40:39 +02:00
DOCUMENTATION = '''
- - -
module : pause
short_description : Pause playbook execution
description :
- Pauses playbook execution for a set amount of time , or until a prompt is acknowledged . All parameters are optional . The default behavior is to pause with a prompt .
- " You can use C(ctrl+c) if you wish to advance a pause earlier than it is set to expire or if you need to abort a playbook run entirely. To continue early: press C(ctrl+c) and then C(c). To abort a playbook: press C(ctrl+c) and then C(a). "
- " The pause module integrates into async/parallelized playbooks without any special considerations (see also: Rolling Updates). When using pauses with the C(serial) playbook parameter (as in rolling updates) you are only prompted once for the current group of hosts. "
2013-03-30 20:44:34 +01:00
version_added : " 0.8 "
2012-10-01 18:40:39 +02:00
options :
minutes :
description :
- Number of minutes to pause for .
required : false
default : null
seconds :
description :
2013-02-20 15:05:48 +01:00
- Number of seconds to pause for .
2012-10-01 18:40:39 +02:00
required : false
default : null
prompt :
description :
- Optional text to use for the prompt message .
required : false
default : null
2015-06-15 21:53:30 +02:00
author : " Tim Bielawa (@tbielawa) "
2013-06-14 11:53:43 +02:00
'''
EXAMPLES = '''
# Pause for 5 minutes to build app cache.
- pause : minutes = 5
# Pause until you can verify updates to an application were successful.
- pause :
# A helpful reminder of what to look out for post-update.
- pause : prompt = " Make sure org.foo.FooOverload exception is not present "
2012-10-01 18:40:39 +02:00
'''