Exit1 not to report failure in controlM


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Exit1 not to report failure in controlM
# 1  
Old 01-23-2020
Exit1 not to report failure in controlM

HI Team,

I running below script from controlM and job is reporting as failure everyday so i tried to change the if exitstatus=1 (send only email) but not to end as a job is failed. can you let me know where i have to change this script to make the script not to fail but instead send email and complete successfully
====
Code:
        && write_log "read complete and matched for ${YEAR}-${MONTH}-${DAY}" \
        && EXITSTATUS=0; } ;} \
        || { write_error "Failed read incomplete and is not matching with ${JOBFILE}" \
        && EXITSTATUS=1; }; }
return ${EXITSTATUS}
}

#
# Main
#

EXITSTATUS=1
[ $# -ne 7 ] && [ $# -ne 6 ] && usage && exit ${EXITSTATUS}
dfs fs -ls -d ${CLOUDDIR} > /dev/null 2>&1 || { write_error "${CLOUDDIR} does not exist. Exiting now!!!!" && exit ${EXITSTATUS}; }
dfs fs -ls ${JOBFILE} > /dev/null 2>&1 || { write_error "${JOBFILE} does not exist. Exiting now!!!!" && exit ${EXITSTATUS}; }

create_log_dir && create_log_files && read_check && EXITSTATUS=0

[ ${EXITSTATUS} -ne 0 ] && notify_error "!!!${ENVIRONMENT}: Validating ${SRCSYSTEMTYPE} files for job ${STATUS} failed!!!" ${LOG} ${ERROR}

exit ${EXITSTATUS}

Moderator's Comments:
Mod Comment Please use code tags when posting data and code samples!

Last edited by Neo; 01-24-2020 at 02:20 AM..
# 2  
Old 01-24-2020
It will be easier for our members to make suggestions for you if you post the entire script (maybe adding line numbers) instead of a code fragment from the script.

Thanks.
# 3  
Old 01-24-2020
The trouble I see is that we dont know if this is a shell script and what shell you are using ( usually most scripts in controlM were in csh, but that was some time ago and I hope things have changed...) or is it and here it gets more delicate, controlM scripting languages for jobs...
# 4  
Old 01-27-2020
Thank you for response,

This is Shell script bash, placed in server and calling the from command line of controlM job.
this for validating the number of job records between two tables. if there is no records on the second table script will end with exit1 and controlM is throwing as job failure so trying to make this to end with exit0 but not to end with failure
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

MDADM Failure - where it came from?

Hello, i have a system with 6 sata3 seagate st3000dm01 disks running on stable Debian with software raid mdadm. i have md0 for root and md1 for swap and md2 for the files. i now want to add one more disk = sdh4 for md2 but i got this errors: The new disk is connected to an 4 port sata... (7 Replies)
Discussion started by: Sunghost
7 Replies

2. UNIX for Dummies Questions & Answers

boot up failure unix sco after power failure

hi power went out. next day unix sco wont boot up error code 303. any help appreciated as we are clueless. (11 Replies)
Discussion started by: fredthayer
11 Replies

3. Red Hat

NT_STATUS_LOGON FAILURE

I am configuring Samba on one of my vmware.when i put smbclient -L local its showing error message : NT_STATUS_LOGON failure.I found that when i remove "Encrypted password entry from smb.conf" it works. pls help me ---------- Post updated at 08:39 PM ---------- Previous update was at 07:11 PM... (0 Replies)
Discussion started by: Vaibhav.T
0 Replies

4. Shell Programming and Scripting

Sftp failure

Hello, Sometimes when i execute my shell that makes sftp it gives me this error: Couldn't close file: Failure. What does it mean?, how can i make sure it will do ok?. Bye (2 Replies)
Discussion started by: rubber08
2 Replies

5. Solaris

DMA failure ?

Our Solaris was hung yesterday, and dmesg show that, nxge3 : <== nxge_m_start: initialization failed nxge2 : nxge_dma_mem_alloc:ddi_dma_mem_alloc kmem alloc failed nxge2 : nxge_alloc_rx_buf_dma: Alloc Failed: dma 9 size_index 10 size requested 4194304 Does it mean the DMA failure ? How... (5 Replies)
Discussion started by: dehetoxic
5 Replies

6. UNIX for Dummies Questions & Answers

Identify File with ControlM Characters

Dear Members, I have a file which contains ControlM characters in it. I need a command by the means of which i should be able to identify if a file has controlM characters. How can this be achieved. Thanks Sandeep (4 Replies)
Discussion started by: sandeep_1105
4 Replies

7. UNIX for Advanced & Expert Users

su failure

Usually when su rejects an attempt to switch user it responds with "Sorry" but with a certain username on some unix servers the response is "Killed". I'm guessing the su accepted the username/password but refused to spawn child shell with the specified username. What's causing this and what has to... (8 Replies)
Discussion started by: twk
8 Replies

8. UNIX for Advanced & Expert Users

sudo comand with ControlM

I'm trying to change the user Id that the script is running under. I tried the sudo comand but the job was submitted under ControlM and it seems that controlM is not allowing the user id to change. I have included the job output below. The sudo comand was suppose to set the user id to "DWSOLAP"... (3 Replies)
Discussion started by: u156531
3 Replies

9. SCO

Raid5 Failure

Forgive me, I do not know much about RAID so I'm going to be as detailed as possible. This morning, our server's alarm was going. I found that one of our drives have failed. (we have 3) It is an Adaptec ATA RAID 2400A controller I'm purchasing a new SCSI drive today. My questions: ... (2 Replies)
Discussion started by: gseyforth
2 Replies

10. Programming

ld failure

Hi, I am using gmake to compile a c program with a makefile. The make file runs ld. I get the following error jsh1035c:/users/egate453/admegate/kapil/samples $ gmake -e -f GNUmakefile queue_c gmake -f ./GNUmakefile queue_c in_objdir=1 build_root=/users/egate453/admegate/kapil/samples... (2 Replies)
Discussion started by: handak9
2 Replies
Login or Register to Ask a Question