From 2db1e9e61900958c7f8418d5794f3cc278def955 Mon Sep 17 00:00:00 2001 From: Martin Zeithaml Date: Thu, 16 May 2024 16:08:36 +0200 Subject: [PATCH] Minor JCL changes Signed-off-by: Martin Zeithaml --- files/SZWESAMP/ZWECSVSM | 116 ++++++++++++++++++++-------------------- files/SZWESAMP/ZWEGENER | 21 ++++++-- 2 files changed, 74 insertions(+), 63 deletions(-) diff --git a/files/SZWESAMP/ZWECSVSM b/files/SZWESAMP/ZWECSVSM index 3f7b5c2412..226b0dbd6f 100644 --- a/files/SZWESAMP/ZWECSVSM +++ b/files/SZWESAMP/ZWECSVSM @@ -1,58 +1,58 @@ -//ZWECSVSM JOB -//* -//* This program and the accompanying materials are made available -//* under the terms of the Eclipse Public License v2.0 which -//* accompanies this distribution, and is available at -//* https://www.eclipse.org/legal/epl-v20.html -//* -//* SPDX-License-Identifier: EPL-2.0 -//* -//* Copyright Contributors to the Zowe Project. 2020, 2020 -//* -//********************************************************************* -//* -//* Zowe Open Source Project -//* This JCL creates the VSAM data set for the Caching Service. -//* -//* -//* CAUTION: This is neither a JCL procedure nor a complete job. -//* Before using this JCL, you will have to make the following -//* modifications: -//* -//* 1) Add job name and job parameters to the JOB statement, to -//* meet your system requirements. -//* -//* When using RLS, customize the definitions in the RLS DD: -//* -//* 5) Optionally, change LOG option NONE to UNDO or ALL to set the -//* desired recovery options for the RLS VSAM. -//* -//* -//* Note(s): -//* -//* 1. This job should complete with return code 0. -//* -//******************************************************************** -//* -//ALLOC EXEC PGM=IDCAMS,REGION=0M -//SYSPRINT DD SYSOUT=* -//SYSIN DD * - DEFINE CLUSTER - - (NAME({zowe.setup.vsam.name}) - -// DD DDNAME={zowe.setup.vsam.mode} -// DD * - REC(80 20) - - INDEXED) - - DATA(NAME({zowe.setup.vsam.name}.DATA) - - RECSZ(4096 4096) - - UNIQUE - - KEYS(128 0)) - - INDEX(NAME({zowe.setup.vsam.name}.INDEX) - - UNIQUE) -//RLS DD * - STORCLAS({zowe.setup.vsam.storageClass}) - - LOG(NONE) - -//NONRLS DD * - VOLUME({zowe.setup.vsam.volume}) - - SHAREOPTIONS(2 3) - -//* +//ZWECSVSM JOB +//* +//* This program and the accompanying materials are made available +//* under the terms of the Eclipse Public License v2.0 which +//* accompanies this distribution, and is available at +//* https://www.eclipse.org/legal/epl-v20.html +//* +//* SPDX-License-Identifier: EPL-2.0 +//* +//* Copyright Contributors to the Zowe Project. 2020, 2020 +//* +//********************************************************************* +//* +//* Zowe Open Source Project +//* This JCL creates the VSAM data set for the Caching Service. +//* +//* +//* CAUTION: This is neither a JCL procedure nor a complete job. +//* Before using this JCL, you will have to make the following +//* modifications: +//* +//* 1) Add job name and job parameters to the JOB statement, to +//* meet your system requirements. +//* +//* When using RLS, customize the definitions in the RLS DD: +//* +//* 2) Optionally, change LOG option NONE to UNDO or ALL to set the +//* desired recovery options for the RLS VSAM. +//* +//* +//* Note(s): +//* +//* 1. This job should complete with return code 0. +//* +//******************************************************************** +//* +//ALLOC EXEC PGM=IDCAMS,REGION=0M +//SYSPRINT DD SYSOUT=* +//SYSIN DD * + DEFINE CLUSTER - + (NAME({zowe.setup.vsam.name}) - +// DD DDNAME={zowe.setup.vsam.mode} +// DD * + REC(80 20) - + INDEXED) - + DATA(NAME({zowe.setup.vsam.name}.DATA) - + RECSZ(4096 4096) - + UNIQUE - + KEYS(128 0)) - + INDEX(NAME({zowe.setup.vsam.name}.INDEX) - + UNIQUE) +//RLS DD * + STORCLAS({zowe.setup.vsam.storageClass}) - + LOG(NONE) - +//NONRLS DD * + VOLUME({zowe.setup.vsam.volume}) - + SHAREOPTIONS(2 3) - +//* diff --git a/files/SZWESAMP/ZWEGENER b/files/SZWESAMP/ZWEGENER index 753b0cc94b..e773895b6d 100644 --- a/files/SZWESAMP/ZWEGENER +++ b/files/SZWESAMP/ZWEGENER @@ -1,8 +1,19 @@ -//ZWEGENER JOB -//* -//* This job is responsible for generating other jobs required -//* to configure Zowe. -//* +//ZWEGENER JOB +//* +//* This program and the accompanying materials are made available +//* under the terms of the Eclipse Public License v2.0 which +//* accompanies this distribution, and is available at +//* https://www.eclipse.org/legal/epl-v20.html +//* +//* SPDX-License-Identifier: EPL-2.0 +//* +//* Copyright Contributors to the Zowe Project. 2020, 2020 +//* +//********************************************************************* +//* +//* This job is responsible for generating other jobs required +//* to configure Zowe. +//* //* The method of validating your configuration is using //* JSON Schema . Zowe provides //* the ConfigMgr to assist in this. This job will invoke