cron mail

2005-03-13 Thread Dennis Olvany
How do I change the e-mail address and SMTP server cron uses to e-mail the daily root report? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: cron mail

2005-03-13 Thread Lowell Gilbert
Dennis Olvany [EMAIL PROTECTED] writes: How do I change the e-mail address and SMTP server cron uses to e-mail the daily root report? There are several methods. You can configure periodic(8) itself through settings in periodic.conf(5) [i.e., type man 5 periodic.conf for details]. My

Re: cron mail

2005-03-13 Thread Ben Munat
MAILTO=[EMAIL PROTECTED] in the /etc/crontab file... I believe. It's discussed in man 5 crontab. Ben Dennis Olvany wrote: How do I change the e-mail address and SMTP server cron uses to e-mail the daily root report? ___ freebsd-questions@freebsd.org

buffer limit in cron?

2005-03-12 Thread junk
I have a script that works fine from command line. But when I run it from cron , its not displaying all the info. Looks like cron is limiting the char length. example from script ran by cron: root54313 0.0 0.2 1024 720 ?? S 3:20PM 0:00.00 cron: running jo example from script ran

copying cron files between computers

2005-03-11 Thread Doug Poland
Hello, I'm want to keep the cron files between two 5.3-STABLE computers synchronized. From my reading on cron(8), crontab(1), and crontab(5), accomplishing this might be a little convoluted. Would something like this work? computer-A: root# crontab -u joeuser -l /usr/home/joeuser

Re: copying cron files between computers

2005-03-11 Thread Ean Kingston
Hello, I'm want to keep the cron files between two 5.3-STABLE computers synchronized. From my reading on cron(8), crontab(1), and crontab(5), accomplishing this might be a little convoluted. Would something like this work? computer-A: root# crontab -u joeuser -l /usr/home

Re: Problems with Cron not deleting log files

2005-03-09 Thread David Fleck
anything like what newsyslog normally does. This is what log files look like on my 5.3-RELEASE-p5 system: $ ls -lrt /var/log [snip...] -rw-r- 1 rootwheel 728 Mar 5 03:06 sendmail.st.0 -rw--- 1 rootwheel 5959 Mar 5 17:00 cron.1.bz2 -rw-r- 1 rootwheel 778

Re: Problems with Cron not deleting log files

2005-03-09 Thread Kevin Kinsey
Richard Mcintyre wrote: # rm cron.zzuL4BB rm: cron.zzuL4BB: Operation not permitted Of course, the classic answer is a question in itself... Are you doing this as root? Kevin Kinsey ___ freebsd-questions@freebsd.org mailing list

Problems with Cron not deleting log files

2005-03-08 Thread Richard Mcintyre
under /var/log. When I first installed I remember reading some advice on 'securing' FreeBSD a little and ran the following commands: # echo root /var/cron/allow echo root /var/at/at.allow # chmod o= /etc/crontab chmod o= /usr/bin/crontab chmod o= /usr/bin/at chmod o= /usr/bin/atq chmod o

Re: Problems with Cron not deleting log files

2005-03-08 Thread Jonathan Chen
On Tue, Mar 08, 2005 at 05:22:08PM -0500, Richard Mcintyre wrote: All, I am having a problem. Back in December I installed FreeBSD5.3 onto a server and have just recently found some new time to 'play' with the settings etc. I think I know what happened but I'm not sure how to fix it.

Re: Problems with Cron not deleting log files

2005-03-08 Thread Richard Mcintyre
Jonathan Chen wrote: On Tue, Mar 08, 2005 at 05:22:08PM -0500, Richard Mcintyre wrote: All, I am having a problem. Back in December I installed FreeBSD5.3 onto a server and have just recently found some new time to 'play' with the settings etc. I think I know what happened but I'm not sure

Re: Problems with Cron not deleting log files

2005-03-08 Thread Jerry McAllister
of the initial settings of /etc/newsyslog.conf or any other conf files. the only commands I ran on the system were the long string of chmod commands I listed. The point is that newsyslog will delete them for you. Just get the configuration right. There is no need to use any other cron job

Odd message from cron daemon

2005-02-27 Thread Anthony Atkielski
I get an e-mail like the following every eleven minutes on my test system: = From [EMAIL PROTECTED] Sun Feb 27 16:55:00 2005 Date: Sun, 27 Feb 2005 16:55:00 +0100 (CET) From: [EMAIL PROTECTED] (Cron Daemon) To: [EMAIL PROTECTED

Re: Odd message from cron daemon

2005-02-27 Thread David Fleck
PROTECTED] (Cron Daemon) To: [EMAIL PROTECTED] Subject: Cron [EMAIL PROTECTED] /usr/libexec/save-entropy X-Cron-Env: SHELL=/bin/sh X-Cron-Env: PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin X-Cron-Env: HOME=/ X-Cron-Env: LOGNAME=operator X-Cron-Env: USER=operator This: not found

Re: Odd message from cron daemon

2005-02-27 Thread Roland Smith
+0100 (CET) From: [EMAIL PROTECTED] (Cron Daemon) To: [EMAIL PROTECTED] Subject: Cron [EMAIL PROTECTED] /usr/libexec/save-entropy X-Cron-Env: SHELL=/bin/sh X-Cron-Env: PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin X-Cron-Env: HOME=/ X-Cron-Env: LOGNAME=operator X-Cron-Env: USER=operator

Re: Odd message from cron daemon

2005-02-27 Thread Anthony Atkielski
Roland Smith writes: The save-entropy script is being run from cron. See /etc/crontab. The first line of this script after the header begins with # This. It looks like the hash mark was removed, and the shell is trying to find the This command and fails. I checked both /usr/libexec/save

Re: Odd message from cron daemon

2005-02-27 Thread Anthony Atkielski
David Fleck writes: As a wild guess, check to see that line 29 in /usr/libexec/save-entropy has a comment mark at the start of it: # This script is called by cron to store bits of randomness which are It does. It looks identical to the same file on my production system. The only difference

Re: Odd message from cron daemon

2005-02-27 Thread Roland Smith
On Sun, Feb 27, 2005 at 06:44:16PM +0100, Anthony Atkielski wrote: Roland Smith writes: The save-entropy script is being run from cron. See /etc/crontab. The first line of this script after the header begins with # This. It looks like the hash mark was removed, and the shell is trying

Re: Odd message from cron daemon

2005-02-27 Thread David Fleck
On Sun, 27 Feb 2005, Anthony Atkielski wrote: It does. It looks identical to the same file on my production system. The only difference is that I'm not getting this mystery message on my production system. What else might cause this? Hmmm. Well, I don't know, but I'd try running the save-entropy

Re: Odd message from cron daemon

2005-02-27 Thread Anthony Atkielski
Roland Smith writes: Could it be that the cron output is mailed to someone else on the production machine? I checked my aliases and stuff and sent some test messages to operator, and they get through okay. Apparently it's not happening on my production box, only on the test box. It works OK

Re: Odd message from cron daemon

2005-02-27 Thread Anthony Atkielski
David Fleck writes: Hmmm. Well, I don't know, but I'd try running the save-entropy script manually and see if you can recreate the message that way. If so, add a -x to the first line #!/bin/sh -x and run it manually again - you should be able to see what command precedes the

Sending nightly cron job output without running sendmail

2005-02-10 Thread Kyle Jensen
Hi, I have deactivated sendmail via sendmail_enable=NONE in my /etc/rc.conf. However, I would like to receive the output of my periodic cron jobs via email. How can I configure my system for this? Thanks so much! ___ freebsd-questions

Re: Sending nightly cron job output without running sendmail

2005-02-10 Thread Joshua Tinnin
On Thursday 10 February 2005 08:04 pm, Kyle Jensen [EMAIL PROTECTED] wrote: Hi, I have deactivated sendmail via sendmail_enable=NONE in my /etc/rc.conf. However, I would like to receive the output of my periodic cron jobs via email. How can I configure my system

Re: Sending nightly cron job output without running sendmail

2005-02-10 Thread Joshua Tinnin
of my periodic cron jobs via email. How can I configure my system for this? sendmail_enable=NO This disables sendmail's incoming mail service, but it will still deliver system mail. I also use this: sendmail_flags=-q1m This means sendmail will process the queue once a minute

User's cron job creates zombie process on 5.3

2005-01-18 Thread Rob
Hi, As a regular user, I have a cron job; 'crontab -l' says: - SHELL=/bin/sh MAILTO= # run at bootup and then every 5 minutes @reboot $HOME/bin/ssh_tunnel */5 * * * * $HOME/bin/ssh_tunnel - The ssh_tunnel is an sh

Re: Mystery message from mystery cron

2004-12-24 Thread Christian Hiris
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 24 December 2004 07:59, John Conover wrote: Root's inbox gets the message at the bottom about every half hour, or so. There is nothing in /var/cron/tabs, so I can't find out what's causing it. This runs from an entry in /etc/crontab

Re: cron not running job

2004-12-20 Thread Tom Vilot
I'm having problems getting my freshly update FreeBSD 5.3 system to run my cron jobs. Logged in as root, I enter the job in root's crontab with the following command crontab -e I enter the job in the following format: 05 10 * * * /root/cronjobs/cvs-sup.sh

Re: cron not running job

2004-12-14 Thread Andy Clements
Andy Clements wrote: Hello All, I'm having problems getting my freshly update FreeBSD 5.3 system to run my cron jobs. Logged in as root, I enter the job in root's crontab with the following command crontab -e I enter the job in the following format: 05 10

Re: cron not running job

2004-12-14 Thread Kirk Strauser
On Tuesday 14 December 2004 12:20, Andy Clements wrote: Did I forget some small tid-bit that needs to change for this to work? Cron requires a newline at the end of the file. I'll bet that your crontab ends with cvs-sup.sh and not cvs-sup.shNEWLINE. -- Kirk Strauser pgpBCUQtL0uV4.pgp

cron not running job

2004-12-14 Thread Andy Clements
Hello All, I'm having problems getting my freshly update FreeBSD 5.3 system to run my cron jobs. Logged in as root, I enter the job in root's crontab with the following command crontab -e I enter the job in the following format: 05 10 * * * /root/cronjobs/cvs-sup.sh

Re: postfix + cron problem

2004-10-29 Thread Nagilum
Oles Hnatkevych wrote: Hello all! There's a FreeBSD box with manually installed postfix-2.1.0. It works, except that cron can not send execution logs by email. The running user receives a message This is the Postfix program at host ... I'm sorry to have to inform you that your

postfix + cron problem

2004-10-22 Thread Oles Hnatkevych
Hello all! There's a FreeBSD box with manually installed postfix-2.1.0. It works, except that cron can not send execution logs by email. The running user receives a message This is the Postfix program at host ... I'm sorry to have to inform you that your message could

Help cron has gone berzerk

2004-09-22 Thread Lute Mullenix
Hi For some reason on the 13th of this month something went haywire with cron. Below is a couple samples of what I am getting in root mail, any inlightenment on this would very appreciated. Date: Wed, 22 Sep 2004 03:40:00 -0500 (CDT) From: Cron Daemon [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: Help cron has gone berzerk

2004-09-22 Thread Jonathan Chen
On Wed, Sep 22, 2004 at 04:36:15AM -0500, Lute Mullenix wrote: Hi For some reason on the 13th of this month something went haywire with cron. Below is a couple samples of what I am getting in root mail, any inlightenment on this would very appreciated. Date: Wed, 22 Sep 2004 03:40:00

cron not running my command?

2004-09-20 Thread Bob Ababurko
Hey there- I am running FreeBSD 5.2.1 and I have a cron job running webalizer. The cron job seems to be running based on the log, but the data is not being updated in the directory. I do believe that I can say that the webalizer is configured correctly because if I run the command

Re: cron not running my command?

2004-09-20 Thread Bill Moran
Bob Ababurko [EMAIL PROTECTED] wrote: Hey there- I am running FreeBSD 5.2.1 and I have a cron job running webalizer. The cron job seems to be running based on the log, but the data is not being updated in the directory. I do believe that I can say that the webalizer is configured

Re: cron not running my command?

2004-09-20 Thread Günther Dippe
'My' webalizer is in /usr/local/bin/ but then I use FBSD 5.1. Try with specifying where you have the configuration file ( -c path-to-config-file-and-filename). Eg. /usr/local/bin/webalizer -c /usr/local/www/conf/webalizer.conf I use it in a shell script and it works fine.

cron and vfork

2004-08-23 Thread Malcolm Kay
I'm having a problem with cron and vfork. Here are a couple of samples from the cron log:- Aug 22 16:13:00 central /usr/sbin/cron[89748]: (root) CMD ( /usr/local/sbin/nwmail2linux) Aug 22 16:15:00 central /usr/sbin/cron[89749]: (CRON) error (can't vfork) Aug 22 16:15:00 central /usr/sbin

Re: cron and vfork

2004-08-23 Thread Chuck Swiger
Malcolm Kay wrote: [ ... ] The presence of a problem became evident when when I was unable to log into the machine Monday morning, neither from a console or through ssh on the LAN. At the console it puts up a login prompt and accepts the name entry but that is all -- no password prompt and no

Nightly cron message question

2004-08-18 Thread Jason Lieurance
Hello, Late couple days on our Freebsd 4.7 email/web server I've got this message in the nightly cron jobs: Checking setuid files and devices: Checking for uids of 0: root 0 toor 0 I've searched and some said it had to do with an incomplete dmesg or something like that. There are some errors

Re: Nightly cron message question

2004-08-18 Thread Kevin D. Kinsey, DaleCo, S.P.
Jason Lieurance wrote: Hello, Late couple days on our Freebsd 4.7 email/web server I've got this message in the nightly cron jobs: Checking setuid files and devices: Checking for uids of 0: root 0 toor 0 You have this line: # 300.chkuid0 daily_status_security_chkuid0_enable=YES set

Re: Nightly cron message question

2004-08-18 Thread James A. Coulter
On Wed, Aug 18, 2004 at 09:04:48AM -0500, Kevin D. Kinsey, DaleCo, S.P. wrote: Jason Lieurance wrote: Hello, Late couple days on our Freebsd 4.7 email/web server I've got this message in the nightly cron jobs: Checking setuid files and devices: Checking for uids of 0: root 0

Strange Behavior in periodic daily cron jobs.

2004-08-05 Thread Paul R Culmo
Greetings. I'm seeing some weird output from the daily periodic cron jobs that run at night. It's related to procmail but I can't figure out where in the scripts that it's causing it. Anyone seen this before? running on 5.2.1 p-9. Ports and source update code nightly using cvsup. Snip

Re: cron can't find root or operator

2004-05-22 Thread David Fleck
the following cron for user dcf on my home system: dcf$ crontab -l # run fetchmail, dump results to cronlog */15 * * * * /usr/local/bin/fetchmail --ssl -Z,571 /home/dcf/fetch.log # timestamp fetch.log 0 * * * *date /home/dcf/fetch.log # clean tex, lyx files out of home dir 0 1

Re: cron can't find root or operator

2004-05-22 Thread Bill Moran
David Fleck wrote: If you already have a file written in the proper format, you can load it as your crontab by specifying 'crontab {filename}'. (That's what section 6.6.1 in the handbook is trying to say. Unfortunately, it is not at all clear on this.) There was an outstanding PR on this ... I

Re: cron can't find root or operator

2004-05-22 Thread chip
Thanks for all the help. I like the changes so far. What about specifically mentioning in the Handbook chapter that when a user runs the command crontab crontab the user should do this in their own home directory. My problem was I ran it in the /etc directory, not knowing any better, probably

Re: cron can't find root or operator

2004-05-22 Thread Bill Moran
chip wrote: Thanks for all the help. I like the changes so far. What about specifically mentioning in the Handbook chapter that when a user runs the command crontab crontab the user should do this in their own home directory. My problem was I ran it in the /etc directory, not knowing any

Re: cron can't find root or operator

2004-05-22 Thread David Fleck
with the same message. So I then su'd and tried again and got the same message again. The I tried - /etc/crontab -u chip crontab (with and without the -e) and get permission denied, as root. 1. Using the information in crontab(5), write a file containing your cron jobs in your favorite text

Script won't run from cron

2004-05-21 Thread Andrew McNaughton
Since upgrading from 4.5-RELEASE to 4.8-RELEASE (actually rebuilding the system and mounting the old /home directory), I'm having problems with a process which rebuilds a search engine index. Everything runs fine from the command line, but the same script fails when running from cron. The /bin

Re: cron can't find root or operator

2004-05-21 Thread carvin5string
--- Bill Moran [EMAIL PROTECTED] wrote: What you did was install the system crontab as a user. Log in as the user you executed crontab crontab as, and enter crontab -r. That will remove the crontab for that user. On a related note. I'm going to make some changes to that section of the

Re: Script won't run from cron

2004-05-21 Thread Andy Smith
the command line, but the same script fails when running from cron. The /bin/sh script runs, but when it goes to fire up the indexing process, that process fails. You need to figure out a way to get your program to tell you *what* exactly fails. A lot of things are different from cron - the most

cron can't find root or operator

2004-05-20 Thread carvin5string
I have a new server set up and running and am getting a slew of messages from cron, like this - Subject: Cron [EMAIL PROTECTED] root /usr/libexec/atrun Body: root: not found and Cron [EMAIL PROTECTED] operator /usr/libexec/save-entropy operator: not found What's going on with cron

Re: cron can't find root or operator

2004-05-20 Thread Eric Crist
On Thursday 20 May 2004 09:14, carvin5string wrote: I have a new server set up and running and am getting a slew of messages from cron, like this - Subject: Cron [EMAIL PROTECTED] root /usr/libexec/atrun Body: root: not found and Cron [EMAIL PROTECTED] operator /usr/libexec/save-entropy

Re: cron can't find root or operator

2004-05-20 Thread Bill Moran
carvin5string wrote: I have a new server set up and running and am getting a slew of messages from cron, like this - Subject: Cron [EMAIL PROTECTED] root /usr/libexec/atrun Body: root: not found and Cron [EMAIL PROTECTED] operator /usr/libexec/save-entropy operator: not found What's

Re: cron can't find root or operator

2004-05-20 Thread platanthera
On Thursday 20 May 2004 17:47, Bill Moran wrote: carvin5string wrote: I have a new server set up and running and am getting a slew of messages from cron, like this - Subject: Cron [EMAIL PROTECTED] root /usr/libexec/atrun Body: root: not found and Cron [EMAIL PROTECTED] operator

Re: cron can't find root or operator

2004-05-20 Thread carvin5string
--- Bill Moran [EMAIL PROTECTED] wrote: You've got a user's crontab created in the format of the system crontab. The system crontab has an extra field to designate the user under which the job should run. When this field is entered in a user's crontab, cron interprets it as the command

Re: cron can't find root or operator

2004-05-20 Thread platanthera
in a user's crontab, cron interprets it as the command to be run and the errors you describe generally result. Keep in mind that the user root has a user crontab that is different from the system crontab. If you're still fuzzy as to what went wrong, reading the man pages

Re: cron can't find root or operator

2004-05-20 Thread Bill Moran
carvin5string wrote: --- Bill Moran [EMAIL PROTECTED] wrote: You've got a user's crontab created in the format of the system crontab. The system crontab has an extra field to designate the user under which the job should run. When this field is entered in a user's crontab, cron interprets

Cron

2004-05-17 Thread Mark
I have a box that is rebooting every 24 hrs, (cron job problem causing a kernel panic, I think) details FreeBSD 4.10-PRERELEASE #0: Fri May 14 14:23:47 CDT 2004 I did a cvsup from 4.9, that was working fine, a week ago and the panics started, waited a week and did cvsup again thinking a fix

Creating periodic cron jobs

2004-05-13 Thread Robert Fitzpatrick
I am trying to create a quarter-daily cron job on my FreeBSD 5.2.1 as follows in /etc/crontab: 05 0,6,12,18 * * * root periodic quarter-daily I created the /etc/periodic/quarter-daily directory and placed my script there. After I ran 'crontab -u root /etc/crontab', now I am

Re: Creating periodic cron jobs

2004-05-13 Thread platanthera
On Thursday 13 May 2004 17:51, Robert Fitzpatrick wrote: I am trying to create a quarter-daily cron job on my FreeBSD 5.2.1 as follows in /etc/crontab: 05 0,6,12,18 * * * root periodic quarter-daily I created the /etc/periodic/quarter-daily directory and placed my script

Re: Creating periodic cron jobs

2004-05-13 Thread Robert Fitzpatrick
On Thu, 2004-05-13 at 12:05, platanthera wrote: On Thursday 13 May 2004 17:51, Robert Fitzpatrick wrote: I am trying to create a quarter-daily cron job on my FreeBSD 5.2.1 as follows in /etc/crontab: 05 0,6,12,18 * * * root periodic quarter-daily I created the /etc

Cron Mailing

2004-05-13 Thread Ian Barnes
Hi, I am trying to find out if something is possible. On our servers we would like all mail from cron not to come from [EMAIL PROTECTED] but rather from say [EMAIL PROTECTED] Is this possible? Am i making sense :P ?? Thanks Ian ___ [EMAIL PROTECTED

Re: Cron Mailing

2004-05-13 Thread Matthew Seaman
On Thu, May 13, 2004 at 12:51:34PM +0200, Ian Barnes wrote: Hi, I am trying to find out if something is possible. On our servers we would like all mail from cron not to come from [EMAIL PROTECTED] but rather from say [EMAIL PROTECTED] I assume you still want the jobs to be run by root

RE: Cron Mailing

2004-05-13 Thread Ian Barnes
Hi, Thanks for the reply. Yes we want cron to be run as root. Okay, we are running exim, so I will see what i can do. Thanks Ian -Original Message- From: Matthew Seaman [mailto:[EMAIL PROTECTED] Sent: 13 May 2004 01:16 PM To: Ian Barnes Cc: [EMAIL PROTECTED] Subject: Re: Cron

Cron Setting up

2004-05-03 Thread Leroy Isbell 3DMASTERS
Hello All, I need a little help in setting a cron job. I have a php command script i need to have run Daly. I am using freebsd stable 4.9. Thank you Leroy ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: Cron Setting up

2004-05-03 Thread Bill Moran
Leroy Isbell 3DMASTERS wrote: Hello All, I need a little help in setting a cron job. I have a php command script i need to have run Daly. I am using freebsd stable 4.9. What have you tried to do so far? One thing you might find easier than cron is periodic. See man periodic and take a look

CRON won't send mail anymore.

2004-03-25 Thread Lars Bungum
Hi! My problem is that cron won't send out mail, anymore regardless of what I set the MAILTO-variable to in my crontab. This worked as expected before, but I can't remember what happend around the time it stopped. The system is FreeBSD 4.5-RELEASE, and regular sending of mail like echo foo |mail

Re: Cron job without emailing errors to root?

2004-03-17 Thread Jonathan Arnold
have the entries in me /etc/crontab to run MRTG at 5 minute intervals without having any output emailed out. can i make it come out to concole instead? anything to get it from emailing would be great as I am seeing ~2000 messages a day :/ Here's a little note I wrote in my blog about making a cron job

Re: Cron job without emailing errors to root?

2004-03-16 Thread Toomas Aas
Hi! What I am wondering is, is if there is a way to still have the entries in me /etc/crontab to run MRTG at 5 minute intervals without having any output emailed out. You can set up MRTG to run as daemon using the RunAsDaemon keyword in the .cfg file. This way you don't need to run it from

Re: Cron job without emailing errors to root?

2004-03-10 Thread Khairil Yusof
On Tue, 2004-03-09 at 21:25 -0600, [EMAIL PROTECTED] wrote: What I am wondering is, is if there is a way to still have the entries in me /etc/crontab to run MRTG at 5 minute intervals without having any output emailed out. can i make it come out to concole instead? anything to get it from

Re: Cron job without emailing errors to root?

2004-03-10 Thread Quintin Riis
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 See documentation for crontab. ``MAILTO='' should do what you want, or send all output from command to /dev/null, i.e. command /dev/null Quintin [EMAIL PROTECTED] wrote: | A quick question-- | I run MRTG for many boxes on my network at five minute

Re: Message from CRON

2004-03-09 Thread Andreas Kohn
Hi, On Tue, 2004-03-09 at 00:25, Gerard Seibert wrote: From time to time, I receive a notification that I have mail in /var/mail/ges. Upon checking, this is what I find: Subject: Cron [EMAIL PROTECTED] operator /usr/libexec/save-entropy [...] operator: not found Subject: Cron [EMAIL

Re: Message from CRON

2004-03-09 Thread Ruben de Groot
/8.12.10/Submit) id i28NB0Qo029628; Mon, 8 Mar 2004 18:11:00 -0500 (EST) (envelope-from ges) Date: Mon, 8 Mar 2004 18:11:00 -0500 (EST) Message-Id: [EMAIL PROTECTED] From: [EMAIL PROTECTED] (Cron Daemon) To: [EMAIL PROTECTED] Subject: Cron [EMAIL PROTECTED] operator /usr/libexec/save

Re[2]: Message from CRON

2004-03-09 Thread Gerard Seibert
PROTECTED]) | Received: (from [EMAIL PROTECTED]) | by BudMan.cable.rcn.com (8.12.10/8.12.10/Submit) id i28NB0Qo029628; | Mon, 8 Mar 2004 18:11:00 -0500 (EST) | (envelope-from ges) | Date: Mon, 8 Mar 2004 18:11:00 -0500 (EST) | Message-Id: [EMAIL PROTECTED] | From: [EMAIL PROTECTED] (Cron

Cron job without emailing errors to root?

2004-03-09 Thread phoetoid
A quick question-- I run MRTG for many boxes on my network at five minute intervals, and I am seeing massive amounts of email filling up roots inbox due to boxes that are currently offline for the night or something. What I am wondering is, is if there is a way to still have the entries in me

Re: Cron job without emailing errors to root?

2004-03-09 Thread Frank Mueller
See man 5 crontab: If MAILTO is defined (and non-empty), mail is sent to the user so named. If MAILTO is defined but empty (MAILTO=), no mail will be sent. So just add the following entry to your /etc/crontab: MAILTO= and cron will send no more eMails. A quick question-- I run MRTG for many

Message from CRON

2004-03-08 Thread Gerard Seibert
(EST) (envelope-from ges) Date: Mon, 8 Mar 2004 18:11:00 -0500 (EST) Message-Id: [EMAIL PROTECTED] From: [EMAIL PROTECTED] (Cron Daemon) To: [EMAIL PROTECTED] Subject: Cron [EMAIL PROTECTED] operator /usr/libexec/save-entropy X-Cron-Env: SHELL=/bin/sh X-Cron-Env: PATH=/etc:/bin:/sbin:/usr/bin

Re: Cron and F-prot not working correctly

2004-02-29 Thread freebsd
Schimcek, Derrick wrote: I have a FreeBSD 5.0 and a FreeBSD 5.2 box both running recent versions of f-prot antivirus when you run the virus def updater through cron it gets halfway through the scripts and then dies. When you run it from the command line it runs correctly. so I wrote my own script

Cron and F-prot not working correctly

2004-02-26 Thread Schimcek, Derrick
I have a FreeBSD 5.0 and a FreeBSD 5.2 box both running recent versions of f-prot antivirus when you run the virus def updater through cron it gets halfway through the scripts and then dies. When you run it from the command line it runs correctly. so I wrote my own script that uses ftp instead

Re: cron or ipfw problem!

2004-02-21 Thread Marwan Sultan
Hello everyone, Thank you for the answers, True, I didnot use the full path for ipfw in my script. when I added to the script /sbin/ipfw RULE_HERE everything works great. I thought it will regonize the command ipfw by it self. well it didnot :) Thank you again marty, nathan, Ion and all

Re: cron or ipfw problem!

2004-02-21 Thread Ion-Mihai Tetcu
On Sat, 21 Feb 2004 15:51:16 +0300 Marwan Sultan [EMAIL PROTECTED] wrote: Hello everyone, Thank you for the answers, True, I didnot use the full path for ipfw in my script. when I added to the script /sbin/ipfw RULE_HERE everything works great. I thought it will regonize the command

cron or ipfw problem!

2004-02-20 Thread Marwan Sultan
/enable.sh Am i doing something wrong? is it a stupid thing? The crontab runs at the schedualed times and I can see in /var/log/cron /usr/sbin/cron[18525]: (root) CMD (/path/deny.sh) But the ipfw will not be added! why? the email log says: ipfw: not found why? is it a crontab mistake

Re: cron or ipfw problem!

2004-02-20 Thread Ion-Mihai Tetcu
On Fri, 20 Feb 2004 23:33:45 +0300 Marwan Sultan [EMAIL PROTECTED] wrote: Hello bsd, I have FreeBSD 4.8R, NATd, ipfw enabled. I want to add a rule to ipfw which activate from 3AM to 3PM : says: ipfw 05000 add deny all from 192.168.1.21 to any The following entries in my crontab

Re: cron or ipfw problem!

2004-02-20 Thread Marty Landman
At 03:33 PM 2/20/2004, Marwan Sultan wrote: I want to add a rule to ipfw which activate from 3AM to 3PM : says: ipfw 05000 add deny all from 192.168.1.21 to any How to run the scripts? thro crontab I fixed my crontab to 0 3 * * * /path/deny.sh 0 15 * * * /path/enable.sh Marwan, are

Re: cron or ipfw problem!

2004-02-20 Thread Nathan Kinkade
? thro crontab I fixed my crontab to 0 3 * * * /path/deny.sh 0 15 * * * /path/enable.sh Am i doing something wrong? is it a stupid thing? The crontab runs at the schedualed times and I can see in /var/log/cron /usr/sbin/cron[18525]: (root) CMD (/path/deny.sh) But the ipfw

cron timing out

2004-02-05 Thread Schimcek, Derrick
Archive: macrdef2.zip inflating: MACRO.DEF inflating: MACRO.ASC SIGN.DEF is a duplicates! SIGN2.DEF is a duplicates! MACRO.DEF is a duplicates! but when I run it through cron it exhibits the same behavior as the first scripts I am calling the system and running the date command before it downloads

Re: cron and anacron

2004-02-04 Thread Oliver Fuchs
On Tue, 03 Feb 2004, Bjorn Eikeland wrote: Looks like it (from port collection): Port: anacron-2.3 Path: /usr/ports/sysutils/anacron Info: Schedules periodic jobs on systems that are not permanently up Maint: [EMAIL PROTECTED] Index: sysutils B-deps: expat-1.95.6_1 gettext-0.12.1

keeping up to date with cron

2004-02-03 Thread Dan Rue
1 * * 6 root/usr/local/sbin/pkgdb -aF # Should probably do this manually from time to time #0 4 * * 6 root /usr/local/sbin/portupgrade -aRy Note that I don't actually run portupgrade from cron anymore. Any suggestions on better flags

Re: keeping up to date with cron

2004-02-03 Thread Dan Nelson
/usr/local/sbin /portsdb -uU 0 1 * * 6 root/usr/local/sbin/pkgdb -aF # Should probably do this manually from time to time #0 4 * * 6 root /usr/local/sbin/portupgrade -aRy Note that I don't actually run portupgrade from cron

cron and anacron

2004-02-02 Thread Oliver Fuchs
Hi, I use linux on my laptop and installed FreeBSD on my PC. In linux I used anacron to get all the lost cron jobs my laptop was not on. Is there something similar (or is anacron ported to FreeBSD) on FreeBSD? Thanx for any help. Oliver -- ... don't touch the bang bang fruit

Re: cron and anacron

2004-02-02 Thread Bjorn Eikeland
linux on my laptop and installed FreeBSD on my PC. In linux I used anacron to get all the lost cron jobs my laptop was not on. Is there something similar (or is anacron ported to FreeBSD) on FreeBSD? Thanx for any help. Oliver ___ [EMAIL PROTECTED

Re: getting rid of cron-sendmail messages

2004-01-01 Thread cb . z . ds
2/01/2004 5:05:21 AM, Lowell Gilbert [EMAIL PROTECTED] wrote: After the upgrade I get now 2 messages from sendmail daily when cron runs. What's happened? Also, is there other/better solution? According to periodic.conf(5), daily_status_security_output is only meaningful

getting rid of cron-sendmail messages

2003-12-31 Thread cb . z . ds
How can I get rid of cron-sendmail messages in FreeBSD 4.9? In FreeBSD 4.7 the following worked: /etc/crontab MAILTO= /etc/periodic.conf -- daily_output=/var/log/daily.log daily_status_mailq_enable=NO daily_status_include_submit_mailq

cron jobs

2003-12-25 Thread shawn
I installed MRTG and got it working. Noticed that it seemed it was not polling on its own. So I changed the cron job to make it poll more often and in fact its not polling on its own. Also noticed that I stopped receiving my Dailey, reports via email.. I'm also trouble shooting a send mail

Re: cron jobs

2003-12-25 Thread Jonathan T. Sage
shawn wrote: I installed MRTG and got it working. Noticed that it seemed it was not polling on its own. So I changed the cron job to make it poll more often and in fact its not polling on its own. Also noticed that I stopped receiving my Dailey, reports via email.. I'm also trouble shooting

Re: cron jobs

2003-12-25 Thread shawn
adjkerntz -a */1 * * * * /usr/local/bin/mrtg /usr/local/etc/mrtg/mrtg.cfg - Original Message - From: Jonathan T. Sage [EMAIL PROTECTED] To: shawn [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, December 25, 2003 10:23 AM Subject: Re: cron jobs

Re: cron jobs

2003-12-25 Thread Jonathan T. Sage
shawn wrote: *snip* 1,310-5 * * * rootadjkerntz -a */1 * * * * /usr/local/bin/mrtg /usr/local/etc/mrtg/mrtg.cfg Part of your problem is going to be right here. comparing two lines, you will notice the the 6th field is the user to

Re: Cron

2003-10-10 Thread Jean-Baptiste Quenot
* Scott Rothgaber: PATH=/bin:/sbin:/usr/bin:/usr/sbin ; export PATH PATH=/bin:/sbin:/usr/bin:/usr/sbin Will do it. -- Jean-Baptiste Quenot http://caraldi.com/jbq/ ___ [EMAIL PROTECTED] mailing list

Cron

2003-10-09 Thread Scott Rothgaber
Good Morning! I'm in the process of converting all of our servers from BSD/OS. One of the things that I've always done is to copy all of the jobs from `/etc/crontab' to root's crontab so that all of the system jobs are in one place. FreeBSD's cron doesn't seem to like this, however. I'm seeing

<    1   2   3   4   5   6   7   >