Jump to content

Restart oscam co 24 godz.


Guest ginhop

Recommended Posts

Jak wpisuje z konsoli /etc/init.d/softcam restart to mi restartuje oscama ale wpis cronie 1 16 * * * /etc/init.d/softcam restart- nie działa wygląda na to że cron jest wyłączony w/etc/init.d/cron wpis jest taki:

#!/bin/sh

# Graterlia OS
# homepage: http://graterlia.xunil.pl
# e-mail: nbox@xunil.pl
#
# skrypt uruchomieniowy Crond
# wersja 2014-12-14

. /etc/sysconfig/gfunctions #wczytanie funkcji wspĂłlnych dla skryptĂłw Graterlia
scriptname="Graterlia Cron" #nazwa uruchamianego czegoĹ›
runname=/var/grun/gcron #plik informujÄ…cy czy uruchomiono, czy nie
msginfo="start, stop, restart, status" #informacja o moĹĽliwych parametrach
PATH=/sbin:/bin:/usr/sbin:/usr/bin #deklaracja ścieżek

gstart()
{
    start-stop-daemon  -b --start --quiet --exec crond
    echo "Cron włączony"
    touch $runname
}

gstop()
{
    start-stop-daemon --stop --quiet --oknodo --name crond --user 0
    if [ -e $runname ]; then
        rm $runname
    fi
    echo "Cron wyłączony"
}

case "$1" in
    'start')
        startapp
    ;;
    'stop')
        stopapp
    ;;
    'status')
        checkapp
    ;;
    'restart')
        stopapp
        sleep 1
        startapp
    ;;
    *)
        infoparm
    ;;
esac

 

w /var/grun/gcron: jest pusto.

Link to comment
Share on other sites

Co pokaże: ps ax | grep cron

 

GraterliaOS:~# ps ax | grep cron

1379 ?        Ss    0:00 crond

4162 pts/0    S+    0:00 grep cron

GraterliaOS:~#

 

 

Link to comment
Share on other sites

Po wpisaniu z konsoli crontab -l pokazuje:

 

GraterliaOS:~# crontab -l

#The time and date fields are:

45 11 * * * /etc/init.d/softcam restart

to wpis musi być dobry.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...