Expect script cronjob running but dying prematurely


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Expect script cronjob running but dying prematurely
# 1  
Old 10-15-2011
Expect script cronjob running but dying prematurely

I have an Ubuntu machine that I'd like to update automatically. I've written an expect script to run the aptitude package manager and update my packages. Essentially it does:
Code:
aptitude update && aptitude upgrade

while answering "yes" at the appropriate time.

It works quite nicely when run directly from the command line. However, when the cronjob I set up runs it (as root), it dies very quickly. In an attempt to figure out what's going wrong, I 'tee'd' the output into a log. In the "aptitude update" stage, it only updates maybe 1/6 of the total sources before inexplicably terminating. It never reaches the "upgrade" stage.

Does anyone have any idea what I might be doing wrong or have any way I might be able to diagnose why the script is quitting early?

Here's the script:
Code:
#!/usr/bin/expect -f

set timeout 180
spawn aptitude update

expect {
   eof
}

set timeout 3600
spawn aptitude safe-upgrade

expect {
    "Y/n" { send "y\r"; expect { eof } } \
    eof
}

And here's my crontab line:
Code:
        *       */12    *       *       *       /home/jimmy/script/patch.sh | tee /home/jimmy/script/patch.log

# 2  
Old 10-15-2011
why do you use " | tee " ???

I mean : it is in a cron job, so you should just :
Code:
/home/jimmy/script/patch.sh >/home/jimmy/script/patch.log 2>&1

By the way i am not very familiar with the notation you use in your cronjob definition, so i don't know if it makes sens as is.

Maybe you can try something like :
Code:
0 0,12 * * * /home/jimmy/script/patch.sh >/home/jimmy/script/patch.log 2>&1

# 3  
Old 10-15-2011
Quote:
Originally Posted by ctsgnb
why do you use " | tee " ???
I figured the script would still need access to STDOUT given that it acts based upon the output. As I mentioned though, that was only done after the script was found to not work.

Quote:
By the way i am not very familiar with the notation you use in your cronjob definition, so i don't know if it makes sens as is.
That notation is not supported in all flavors of UNIX but Linux is more than happy with it.
# 4  
Old 10-15-2011
Did you try to make a run logging the standard error output to a log file ? if so, what message did you get ?


---------- Post updated at 01:13 AM ---------- Previous update was at 01:11 AM ----------

Also check your environment (in your script before runing the spawn commands, log the output of an "env" command and compare the logged environment (when launched via crontab) with the one you have when you run it manually
# 5  
Old 10-15-2011
Good ideas but neither one helped. This isn't a production box, so it's not that important. I was mostly curious as to whether I was missing something obvious. I could just pipe 'yes' into it to make it work and simplify the process. Thanks for making an effort though!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

expect telnet script execute by cronjob

hi, please help, keep getting this bolded error and look it up and people say its your environment variable though i tried to set it manually in expect..it run fine if i run it manually but once i run it by cronjob it error below..i tried to comment out ip/login info with *.. logfile:: START... (0 Replies)
Discussion started by: cssanangeles
0 Replies

2. UNIX for Dummies Questions & Answers

Script not running through Cronjob

Hi, I have a .ksh script which updates the database. The script is running fine manually but it is not running through cron.All the file permissions are fine. The script contents are as below: #!/usr/bin/ksh ddate=`date +%Y%m%d` echo $ddate nohup sqlplus crm/crm @db_state_sync.sql >>... (3 Replies)
Discussion started by: shivangi
3 Replies

3. UNIX for Dummies Questions & Answers

how to cancel a cronjob if the cronjob still running

hi everyone I'm newbie in this forum hope I can get some help here :) I have a command in crontab that executed every 1 minute sometime this command need more than 1 minute to finish the problem is, the crontab execute this command although it's not finish processing yet and causing the system... (7 Replies)
Discussion started by: 2j4h
7 Replies

4. Shell Programming and Scripting

A running Script giving error while scheduled in cronjob

Hi, I have script which is properly running but when i schedule it in cron it throws an error like : Your "cron" job on retrprdapp1 /usr/bin/sh /retr/cron/ftp.sh 2>&1 produced the following output: /retr/cron/ftp.sh: syntax error at line 17: `(' unexpected line17 is # Get list of... (10 Replies)
Discussion started by: rajagasti
10 Replies

5. UNIX for Dummies Questions & Answers

Cronjob for running a php script intermittently?

Hey all Found this forum googling for solutions. Great community this! Im looking for help trying to run a php script every 20 minutes. The script basically has to loop continuously forever but inexplicably hangs every 30 minutes or so. I have not been able to debug the script and find... (2 Replies)
Discussion started by: aras
2 Replies

6. Shell Programming and Scripting

Problems in running a Perl script via cronjob

I have a very basic perl script that attempts to find if a process is running. If the process is not running then the script is supposed to start the process. If I execute the script from command line it works fine as expected. However if the script is executed via cronjob, the script cannot find... (1 Reply)
Discussion started by: ypant
1 Replies

7. Shell Programming and Scripting

Running script that sends an html formatted email fails when its run as cronjob

Hi Im very new at working with unix and this problem I simply can not understand. I know there are a lot of threads about problems with shell scripts behaving differently when run from a terminal and from a cronjob. I have tried everything(almost) but I still havent cracked this problem. Im... (15 Replies)
Discussion started by: Nightowl
15 Replies

8. Shell Programming and Scripting

expect + cronjob + SFTP

Hi all, i got a really strange problem i wrote a script, when i run this script manually everything works fine but when i make a cronjob for it, with the same user, the EXPECT script will not work. Only the first line will be executed this is the SHell bash script #!/bin/sh; php -q... (2 Replies)
Discussion started by: digitac
2 Replies

9. Shell Programming and Scripting

Shell script not running thru Cronjob

Hi I have a shell script, it run ok if executed from the path it is located at but doesnot run when the same is tried through cron-job. can someone help me please. regards gaurav shrinivas Email address removed (8 Replies)
Discussion started by: gauravshrinivas
8 Replies

10. Shell Programming and Scripting

Variables are not getting exported while running the script in cronjob

Hi All Some how, variables are not getting exported while running the script in cronjob. Variable value is coming blank. But the variables are geting the value when the same script I am running manually. Any idea why? When running the script in cron-job ==================================... (7 Replies)
Discussion started by: csaha
7 Replies
Login or Register to Ask a Question