Sponsored Content
Full Discussion: Cron job failure
Top Forums Shell Programming and Scripting Cron job failure Post 302297300 by Yogesh Sawant on Friday 13th of March 2009 04:15:00 AM
Old 03-13-2009
would you mind showing us the complete line?
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Cron job failure - passwd aging feature

I have a script running as a cron job in machine A . This script ftps some files everyday from machine A to machine B, and mails me about the status. It works fine for some days....and suddenly stops running. By viewing the log files, I see that the script itself was not invoked by cron on those... (4 Replies)
Discussion started by: Deepa
4 Replies

2. UNIX for Dummies Questions & Answers

CRON usage for CRON job

can anybody explain the usage of CRON for adding a cron job. please provide an example also for better understanding !!! Thanks (1 Reply)
Discussion started by: skyineyes
1 Replies

3. Solaris

cron job starts new cron proccess

I run cron in solaris 10 zone. One cron job which syncing files to nfs mounted on container, creates after finishing another cron proccess(/usr/sbin/cron), and after 100 existing cron proccesses next cron job will not start. It's too weird for me, I'm not able to solve this problem. Theoretically... (3 Replies)
Discussion started by: ron76
3 Replies

4. Shell Programming and Scripting

Trigger a job on autosys failure

Hi, we have thousands of autosys jobs scheduled. I want a common job or script to be triggered if any of the autosys job fails? Now, obviously i cannot have a new autosys job with condition as failure of each of 1000s of jobs. Is there an autosys script/job that invokes when any job fails and a... (1 Reply)
Discussion started by: ysrinu
1 Replies

5. Shell Programming and Scripting

autosys job configuration for job failure.

We need to configure autosys that when a job fails continously for 3 times, we need to call another job. Is this possible in Autosys, or can anyone advice on the alternative. (2 Replies)
Discussion started by: sangea
2 Replies

6. Solaris

Cron job running even after cron is removed

Hi , I have removed a cron for particular user , but cron job seems to be running even after the cron entry is removed. The purpose of the cron was to sendmail to user ( it uses mailx utility ) I have restarted cron and sendmail service still user is getting mail alerts from the cron job. And... (4 Replies)
Discussion started by: chidori
4 Replies

7. Shell Programming and Scripting

Commented cron job -- cron monitoring

Hi I have a requirement to write a shell script,that will check the all commented job in cron job.Please help !! (2 Replies)
Discussion started by: netdbaind
2 Replies

8. Shell Programming and Scripting

Cron Job failure - No such file or directory

Hi all, I'm having an issue with a script i wrote to pull information from the Amazon AWS API. Basically the script takes arguments from the command line and attempts to grab user information for each AWS access group. The command is issued like this: # sh awsReport.sh <outputFileName>... (3 Replies)
Discussion started by: ChocoTaco
3 Replies

9. Shell Programming and Scripting

Cron job - Need to run Cron every quarter at particular time

Hi, 1) If some job supposed to run on 1st of every month at 7 AM In cron job when we have a blackout on the 1st ( i.e when 1st falls on a sunday ) how can we make the job run the next business day? 2) How can we run a job on 25th of every quarter 7 AM(jan,apr,jul,oct) And if 25th... (5 Replies)
Discussion started by: System Admin 77
5 Replies

10. UNIX for Advanced & Expert Users

Cron Authentication Failure error in Linux

I was bogged with an error “Authentication Failure” for all of my cron jobs in Linux Ubunutu. root@Test:~# tail -f /var/log/syslog | grep cron Dec 11 16:38:01 Test cron: Authentication failure Dec 11 16:38:01 Test cron: Authentication failure Dec 11 16:38:09 Test cron: (CRON) INFO (pidfile... (1 Reply)
Discussion started by: SULTAN01
1 Replies
QListBoxPixmap(3qt)													       QListBoxPixmap(3qt)

NAME
QListBoxPixmap - List box items with a pixmap and optional text SYNOPSIS
#include <qlistbox.h> Inherits QListBoxItem. Public Members QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap ) QListBoxPixmap ( const QPixmap & pixmap ) QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap, QListBoxItem * after ) QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text ) QListBoxPixmap ( const QPixmap & pix, const QString & text ) QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text, QListBoxItem * after ) ~QListBoxPixmap () virtual const QPixmap * pixmap () const virtual int height ( const QListBox * lb ) const virtual int width ( const QListBox * lb ) const Protected Members virtual void paint ( QPainter * painter ) DESCRIPTION
The QListBoxPixmap class provides list box items with a pixmap and optional text. Items of this class are drawn with the pixmap on the left with the optional text to the right of the pixmap. See also QListBox, QListBoxItem, and Advanced Widgets. MEMBER FUNCTION DOCUMENTATION
QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap ) Constructs a new list box item in list box listbox showing the pixmap pixmap. QListBoxPixmap::QListBoxPixmap ( const QPixmap & pixmap ) Constructs a new list box item showing the pixmap pixmap. QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap, QListBoxItem * after ) Constructs a new list box item in list box listbox showing the pixmap pixmap. The item gets inserted after the item after, or at the beginning if after is 0. QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text ) Constructs a new list box item in list box listbox showing the pixmap pix and the text text. QListBoxPixmap::QListBoxPixmap ( const QPixmap & pix, const QString & text ) Constructs a new list box item showing the pixmap pix and the text to text. QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text, QListBoxItem * after ) Constructs a new list box item in list box listbox showing the pixmap pix and the string text. The item gets inserted after the item after, or at the beginning if after is 0. QListBoxPixmap::~QListBoxPixmap () Destroys the item. int QListBoxPixmap::height ( const QListBox * lb ) const [virtual] Returns the height of the pixmap in list box lb. See also paint() and width(). Reimplemented from QListBoxItem. void QListBoxPixmap::paint ( QPainter * painter ) [virtual protected] Draws the pixmap using painter. Reimplemented from QListBoxItem. const QPixmap * QListBoxPixmap::pixmap () const [virtual] Returns the pixmap associated with the item. Reimplemented from QListBoxItem. int QListBoxPixmap::width ( const QListBox * lb ) const [virtual] Returns the width of the pixmap plus some margin in list box lb. See also paint() and height(). Reimplemented from QListBoxItem. SEE ALSO
http://doc.trolltech.com/qlistboxpixmap.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qlistboxpixmap.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QListBoxPixmap(3qt)
All times are GMT -4. The time now is 12:40 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy