You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,31 @@ ibm.ibm_zos_core Release Notes
5
5
.. contents:: Topics
6
6
7
7
8
+
v1.7.0-beta.2
9
+
=============
10
+
11
+
Release Summary
12
+
---------------
13
+
14
+
Release Date: '2023-08-21'
15
+
This changelog describes all changes made to the modules and plugins included
16
+
in this collection. The release date is the date the changelog is created.
17
+
For additional details such as required dependencies and availability review
18
+
the collections `release notes <https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html>`__
19
+
20
+
Minor Changes
21
+
-------------
22
+
23
+
- zos_archive - If destination data set space is not provided then the module computes it based on the src list and/or expanded src list based on pattern provided. (https://github.com/ansible-collections/ibm_zos_core/pull/930).
24
+
- zos_archive - When xmit faces a space error in xmit operation because of dest or log data set are filled raises an appropriate error hint. (https://github.com/ansible-collections/ibm_zos_core/pull/930).
25
+
- zos_unarchive - When copying to remote fails now a proper error message is displayed. (https://github.com/ansible-collections/ibm_zos_core/pull/930).
26
+
- zos_unarchive - When copying to remote if space_primary is not defined, then is defaulted to 5M. (https://github.com/ansible-collections/ibm_zos_core/pull/930).
27
+
28
+
Bugfixes
29
+
--------
30
+
31
+
- zos_archive - Module did not return the proper src state after archiving. Fix now displays the status of the src after the operation. (https://github.com/ansible-collections/ibm_zos_core/pull/930).
Copy file name to clipboardExpand all lines: docs/source/modules/zos_archive.rst
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,14 +112,20 @@ dest
112
112
113
113
If *dest* is a nonexistent USS file, it will be created.
114
114
115
+
If *dest* is an existing file or data set and *force=true*, the existing *dest* will be deleted and recreated with attributes defined in the *dest_data_set* option or computed by the module.
116
+
117
+
If *dest* is an existing file or data set and *force=false* or not specified, the module exits with a note to the user.
118
+
115
119
Destination data set attributes can be set using *dest_data_set*.
116
120
121
+
Destination data set space will be calculated based on space of source data sets provided and/or found by expanding the pattern name. Calculating space can impact module performance. Specifying space attributes in the *dest_data_set* option will improve performance.
122
+
117
123
|**required**: True
118
124
|**type**: str
119
125
120
126
121
127
exclude
122
-
Remote absolute path, glob, or list of paths, globs or data set name patterns for the file, files or data sets to exclude from path list and glob expansion.
128
+
Remote absolute path, glob, or list of paths, globs or data set name patterns for the file, files or data sets to exclude from src list and glob expansion.
123
129
124
130
Patterns (wildcards) can contain one of the following, `?`, `*`.
125
131
@@ -152,7 +158,7 @@ mode
152
158
153
159
The mode may also be specified as a symbolic mode (for example, 'u+rwx' or 'u=rw,g=r,o=r') or a special string 'preserve'.
154
160
155
-
*mode=preserve* means that the file will be given the same permissions as the source file.
161
+
*mode=preserve* means that the file will be given the same permissions as the src file.
156
162
157
163
|**required**: False
158
164
|**type**: str
@@ -170,7 +176,7 @@ owner
170
176
171
177
172
178
remove
173
-
Remove any added source files , trees or data sets after module `zos_archive <./zos_archive.html>`_ adds them to the archive. Source files, trees and data sets are identified with option *path*.
179
+
Remove any added source files , trees or data sets after module `zos_archive <./zos_archive.html>`_ adds them to the archive. Source files, trees and data sets are identified with option *src*.
174
180
175
181
|**required**: False
176
182
|**type**: bool
@@ -387,6 +393,8 @@ Notes
387
393
388
394
When packing and using ``use_adrdssu`` flag the module will take up to two times the space indicated in ``dest_data_set``.
389
395
396
+
tar, zip, bz2 and pax are archived using python ``tarfile`` library which uses the latest version available for each format, for compatibility when opening from system make sure to use the latest available version for the intended format.
397
+
390
398
391
399
392
400
See Also
@@ -425,7 +433,7 @@ dest_state
425
433
426
434
``compress`` when the file is compressed, but not an archive.
427
435
428
-
``incomplete`` when the file is an archive, but some files under *path* were not found.
436
+
``incomplete`` when the file is an archive, but some files under *src* were not found.
0 commit comments