VyOS cronの設定

https://wiki.vyos-users.jp/index.php/タスクスケジューラ

 

スクリプトの設置

$ sudo vi /config/scripts/test.sh
$ sudo chmod 755 /config/scripts/test.sh

・cronの設定

$ configure
set system task-schedule task TEST executable path /config/scripts/test.sh
set system task-schedule task TEST interval 30m
or
set system task-schedule task TEST crontab-spec "*/30 * * * *"

commit
save
exit