How to check the operation of "tmp_hlq" #765
-
I would like to check the operation of "tmp_hlq". I was able to confirm the other modules with backup names, but I don't know how to do it for the temporary data sets. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To address your second question first, it is useful to use It is a bit tricky to visually confirm the temporary data sets which are created by the collection, largely because the
It looks like for |
Beta Was this translation helpful? Give feedback.
To address your second question first, it is useful to use
tmp_hlq
for temporary data sets in cases where the ansible user does not have sufficient permissions on the target z/OS system to create data sets using the default HLQ (high level qualifier) typically defined in our collection as the ansible user's username. For example, I run playbooks against my z/VM with theansible_user
set toomvsadm
and thus the temporary HLQ used by the ibm_zos_core collection isomvsadm
unless I specifically override via thetmp_hlq
module parameter.It is a bit tricky to visually confirm the temporary data sets which are created by the collection, largely because the
tmp_hlq
value is passed down to the Z…