**已关闭。**此问题需要debugging details。目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
8年前关闭。
Improve this question的
我没有任何使用Perl的经验,所以我不能解决这个问题。你能帮我解决这个问题吗?
Error 1 : Useless use of private variable in void context at ./createnodelist.pl line 51.
Error 2 : Use of uninitialized value $interval in division (/) at ./createnodelist.pl line 10.
Error 3 : Illegal division by zero at ./createnodelist.pl line 10.
字符串
基本上,下面的脚本应该加载证书列表,并生成一个节点列表,该节点分配给节点:
line 51 print FILE "\n";
line 10 my $jph = ceil(60/$interval);
型
源代码:
#!/usr/bin/perl
use warnings;
use strict;
use POSIX;
my $interval = $ARGV[0];
my $path = '/etc/puppet/modules/puppet/scripts/puppet_cron';
# Calculate how many jobs per hour we have
my $jph = ceil( 60 / $interval );
# Load list of all nodes
my @nodes = `/usr/sbin / puppetca -la | /usr/ bin / cut -d ' ' -f 2`; #
chomp(@nodes);
# Count number of nodes
my $node_count = scalar(@nodes);
# Count number of nodes per group
my $nodes_per_group = $node_count / $interval;
# Process nodes list and assigne minutes for each node
open( FILE, ">$path/nodes.list" );
for ( my $i = 0; $i < $interval; $i++ ) {
my $minute;
my $group = $i + 1;
my $node_n;
# Process nodes in group
for ( $node_n = 0; $node_n < $nodes_per_group; $node_n ) {
# Assign minutes to a node
my $node = shift(@nodes);
if ($node) {
print FILE "$node;";
for ( my $n = 0; $n < $jph; $n++ ) {
$minute = $i + ( $interval * $n );
if ( $minute
< 60 ) # Only print minutes that actually exist
{
print FILE "$minute";
}
if ( $n != $jph - 1 ) {
print FILE ',';
}
}
}
$node_n++;
print FILE "\n";
}
}
close(FILE);
exit 0;
型
1条答案
按热度按时间mfpqipee1#
解决Perl问题的第一条规则:
设置
use strict;
use warnings;
。第二:阅读错误信息。
你的问题在第10行:除以零。唯一的可能性是
$interval
为零。或者未定义。或者未初始化。如果你打开strict/warnings,那么它可能会给予你一个关于后者的警告。第51行:在void上下文中无用地使用私有变量-基本上意味着该语句没有做任何事情。可能意味着
FILE
没有被正确打开。编辑:发布您的代码:
$interval
被设置为$ARGV[0]
。您在命令行上提供了什么参数?如果没有提供值,那么您将得到除以零错误,因为$interval
未定义。从你的评论-你调用它没有参数。因此
$interval
将永远是未定义的,这将给你给予你想要的错误消息。要么:$interval
设置默认值,例如my $interval = $ARGV[0] || 60;
对于你的第二个问题-在void上下文中无用地使用私有变量:
字符串
你没有递增
$node_n
,它是在一个空的上下文中使用的。因此出现了警告。型