File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change
1
+ bugfixes :
2
+ - zos_operator - fixed incorrect example descriptions and updated the doc to
3
+ highlight the deprecated option `wait`.
4
+ (https://github.com/ansible-collections/ibm_zos_core/pull/648)
Original file line number Diff line number Diff line change 57
57
default: 1
58
58
wait:
59
59
description:
60
- - Configuring wait used by the L(zos_operator,./zos_operator.html) module has been
61
- deprecated and will be removed in ibm.ibm_zos_core collection.
60
+ - Configuring wait used by the L(zos_operator,./zos_operator.html) module
61
+ has been deprecated and will be removed in a future ibm.ibm_zos_core
62
+ collection.
62
63
- Setting this option will yield no change, it is deprecated.
64
+ - Review option I(wait_time_s) to instruct operator commands to wait.
63
65
type: bool
64
66
required: false
65
67
default: true
66
68
"""
67
69
68
70
EXAMPLES = r"""
69
- - name: Execute an operator command to show active jobs
71
+ - name: Execute an operator command to show device status and allocation
70
72
zos_operator:
71
- cmd: 'd u,all '
73
+ cmd: 'd u'
72
74
73
- - name: Execute an operator command to show active jobs with verbose information
75
+ - name: Execute an operator command to show device status and allocation with verbose information
74
76
zos_operator:
75
- cmd: 'd u,all '
77
+ cmd: 'd u'
76
78
verbose: true
77
79
78
80
- name: Execute an operator command to purge all job logs (requires escaping)
81
83
82
84
- name: Execute operator command to show jobs, waiting up to 5 seconds for response
83
85
zos_operator:
84
- cmd: 'd u ,all'
86
+ cmd: 'd a ,all'
85
87
wait_time_s: 5
86
88
87
89
- name: Execute operator command to show jobs, always waiting 7 seconds for response
88
90
zos_operator:
89
- cmd: 'd u ,all'
91
+ cmd: 'd a ,all'
90
92
wait_time_s: 7
91
93
"""
92
94
You can’t perform that action at this time.
0 commit comments