1 Star 0 Fork 1

F.Y/perl_dnspod_ddns

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
daemond.pl 623 Bytes
一键复制 编辑 原始数据 按行查看 历史
F.Y 提交于 2015-01-17 21:59 . Update daemond.pl
#!/usr/bin/perl
use strict;
use File::Slurp;
use App::Daemon qw( daemonize );
use Proc::Fork;
#use POSIX 'WNOHANG';
#$SIG{CHLD}=sub {while (waitpid(-1,WNOHANG)>0) {}};
#$App::Daemon::background = 1;
my $code=read_file('ddns.pl');
$App::Daemon::logfile = "/var/log/dnspod_ddns.log";
$App::Daemon::pidfile = "/var/run/dnspod_ddns.pid";
$App::Daemon::as_user = "root";
$App::Daemon::as_group = "root";
daemonize();
# print $code;
while(1){
run_fork{
child{
eval($code);
if($@){
ERROR $@;
}
exit;
}
parent{
my $child_pid=shift;
waitpid $child_pid,0;
}
};
sleep 60;#暂停后再执行
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Perl
1
https://gitee.com/fy138/perl_dnspod_ddns.git
[email protected]:fy138/perl_dnspod_ddns.git
fy138
perl_dnspod_ddns
perl_dnspod_ddns
master

搜索帮助