[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [Help-gnu-radius] Cron Job for rebooting the radius.
From: |
Sergey Poznyakoff |
Subject: |
RE: [Help-gnu-radius] Cron Job for rebooting the radius. |
Date: |
Sun, 31 Aug 2003 22:08:35 +0300 |
> */5 * * * * /usr/local/sbin/radctl -s which >/dev/null || radctl restart
>
> I receive the following error:
>
> /bin/sh: line 1: radctl: command not found
You should specify the full path for *both* invocations of radctl, there's no
use prefixing just one of them:
*/5 * * * * /usr/local/sbin/radctl -s which >/dev/null ||
/usr/local/sbin/radctl restart
Regards,
Sergey