unix cron pptp重新启动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unix cron pptp重新启动相关的知识,希望对你有一定的参考价值。

make a cron like:

`*/5 * * * * root bash /root/vpn-check.sh`
  1. #!/bin/sh
  2.  
  3. ping -c3 10.8.3.0 > pingreport
  4. result=`grep "0 received" pingreport`
  5. truncresult="`echo "$result" | sed 's/^(.................................).*$/1/'`"
  6. if [[ $truncresult == "3 packets transmitted, 0 received" ]]; then
  7. pon company-vpn
  8. fi

以上是关于unix cron pptp重新启动的主要内容,如果未能解决你的问题,请参考以下文章

如何让 NGINX 从 cron 作业重新启动/重新加载?

在cron上重新启动apache

从 cron 重新启动弹性 beanstalk 应用程序服务器

用于重新启动 memcached 的 Cron 脚本不起作用

有没有办法使用cron重新启动pm2进程但是只有它还没有运行?

当我们在android中使用backstack返回上一个片段时,上一个片段正在重新启动