-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split mvs task into 2 because usually authloadlib doesnt need to be c…
…reated. trim vsam and mvs files Signed-off-by: 1000TurquoisePogs <[email protected]>
- Loading branch information
1 parent
3af22ed
commit 41bb33a
Showing
5 changed files
with
89 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
//ZWEIMVS2 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 used to create the APF load library for an instance | ||
//* Of Zowe. It is not needed if your choosen value of | ||
//* 'zowe.setup.dataset.authLoadlib' is equal to | ||
//* 'zowe.setup.prefix' + 'SZWELOAD'. | ||
//* | ||
//* When running this job, you should also run ZwEIMVS | ||
//* | ||
//********************************************************************* | ||
//MKPDSE EXEC PGM=IKJEFT01 | ||
//SYSTSPRT DD SYSOUT=A | ||
//SYSTSIN DD * | ||
ALLOC NEW DA('{zowe.setup.dataset.authLoadlib}') + | ||
dsntype(library) dsorg(po) recfm(u) lrecl(0) + | ||
blksize(32760) unit(sysallda) space(30,15) tracks | ||
//* | ||
//AUTHCPY EXEC PGM=BPXBATCH | ||
//BPXPRINT DD SYSOUT=* | ||
//STDOUT DD SYSOUT=* | ||
//STDERR DD SYSOUT=* | ||
//STDPARM DD * | ||
SH cd {zowe.runtimeDirectory} && | ||
cd components/zss && | ||
cp LOADLIB/ZWESIS01 | ||
"//'{zowe.setup.dataset.authLoadlib}(ZWESIS01)'" && | ||
cp LOADLIB/ZWESAUX | ||
"//'{zowe.setup.dataset.authLoadlib}(ZWESAUX)'" && | ||
cp LOADLIB/ZWESISDL | ||
"//'{zowe.setup.dataset.authLoadlib}(ZWESISDL)'" && | ||
cd ../launcher/bin && | ||
cp zowe_launcher | ||
"//'{zowe.setup.dataset.authLoadlib}(ZWELNCH)'" | ||
/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters