@reboot é suportado no Ubuntu. A razão pela qual sua entrada
@reboot /var/kiosk/btest.sh
não funciona em / etc / crontab porque está faltando o campo do usuário. A sintaxe correta seria
@reboot root /var/kiosk/btest.sh
O Ubuntu suporta @reboot
no crontab?
Eu acho a documentação sugerindo que é suportada, mas a web chatter afirma que não é.
Não consigo fazer a seção @reboot
funcionar.
A seção "depois da meia-noite" funciona bem.
Aqui está o exemplo de teste do meu /etc/crontab
:
$ cat /etc/crontab
# /etc/crontab: system-wide crontab
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 )
#
##
# in the beginning -
@reboot /var/kiosk/btest.sh
# after midnight
30 0 * * * root /etc/cron.daily/kiosk/kioskReboot.sh
# end of crontab
btest.sh
#!/bin/bash
date > /var/kiosk/STARTFLAG.txt
echo we booted >> /var/kiosk/STARTFLAG.txt
date
echo we booted
$ ls -l btest.sh
-rwxrwxrwx 1 root root 147 Aug 21 15:19 btest.sh
$ ls -ld
drwxrwxrwx 14 laptopsanytime root 4096 Aug 21 16:30 .
@reboot é suportado no Ubuntu. A razão pela qual sua entrada
@reboot /var/kiosk/btest.sh
não funciona em / etc / crontab porque está faltando o campo do usuário. A sintaxe correta seria
@reboot root /var/kiosk/btest.sh
Tags cron