> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of Fred Schmidt > Sent: Wednesday, August 10, 2005 10:08 PM > To: [email protected] > Subject: Checking if all UNIX Filesystems were mounted > successfully at IPL > > > Hi folks. > > I'm looking for a way of automatically verifying that all Filesystems > specified in BPXPRMxx were successfully mounted at IPL. > > We've currently got a rather ugly REXX that chains through > MVS control > blocks to locate the BPXPRMxx members, extract the filesystem names, > substitute system symbols and then compare the results > against the mount > table via the getmntent syscall service. > > Please tell me that there's an easier and more reliable way. > > Regards, > Fred Schmidt > Senior Systems Programmer > Department of Corporate and Information Services (DCIS) > Data Centre Services (DCS) > Northern Territory Government
Check out the REXX routine "getmntent". It runs in a "syscall" or UNIX environment. It will return, in a stem variable, all of the mounted filesystems. at http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/BPXZB651/3.66 If you don't like REXX, then try the equivalent HLASM (or COBOL or PL/I) callable routine BPX1GMN/BPX4GMN at http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/BPXZB151/2.24 6 in "C" use w_getmntent() at http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/EDCLB150/3.97 0 -- John McKown Senior Systems Programmer UICI Insurance Center Information Technology This message (including any attachments) contains confidential information intended for a specific individual and purpose, and its' content is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this transmission, or taking any action based on it, is strictly prohibited. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

