Se vain ei onnistu. Mikähän mättää, kun tuo crontab ei edelleenkään tottele. Pitäisi siis toistaa minuutin välein tuo testaus scripti. Kyseessä on ubuntu 10.10. Onko joutunut woodoon kohteeksi?
tiedoston matti oikeudet:
-rwxrw---- 1 j j 98 2011-03-16 07:27 koe.sh
j@j-System-Product-Name:~$ ^C
scriptin koe.sh oikeudet:
-rwxrw---- 1 j j 98 2011-03-16 07:27 koe.sh
j@j-System-Product-Name:~$ ^C
/etc/crontab:
#00 * * * * * root
# m h dom mon dow command
00 * * * * * root /home/matti/koe.sh
scripti testattu ja toimii ainakin komentorivikäskyllä. Scripti matti -tiedostossa:
#!/bin/bash
echo "Lasketaan kymmeneen:" > koe.dat
for luku in $(seq 10)
do
echo $luku
done
Osaisiko joku neuvoa, että miksi alla oleva crontab + ftp scripti ei toimi. Se vai ei näytä tekevän mitään ? Scripti kyllä toimii komentoriviltä, eli /etc/crontab ilmeisesti mättää?
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
* * * * * * root ~/jorma/ardu/koe.sh
#
#!/bin/sh
WINDOWS_SERVER= domaini.com/public_ftp
LOCALDIR=/oma/hakemisto/
FILENAME=ulkolampo.png
# transfer the file
ftp -in << EOF
open $WINDOWS_SERVER
user käyttäjä salasana
ascii
lcd $LOCALDIR
put $FILENAME
close
EOF