domeneshop: Inline an unnecessary variable
This commit is contained in:
parent
d391f41074
commit
61fff1c344
1 changed files with 1 additions and 2 deletions
|
@ -4313,13 +4313,12 @@ EoEXAMPLE
|
||||||
######################################################################
|
######################################################################
|
||||||
sub nic_domeneshop_update {
|
sub nic_domeneshop_update {
|
||||||
debug("\nnic_domeneshop_update -------------------");
|
debug("\nnic_domeneshop_update -------------------");
|
||||||
my $endpointPath = "/v0/dyndns/update";
|
|
||||||
for my $h (@_) {
|
for my $h (@_) {
|
||||||
my $ip = delete $config{$h}{'wantip'};
|
my $ip = delete $config{$h}{'wantip'};
|
||||||
info("$h: Setting IP address to $ip");
|
info("$h: Setting IP address to $ip");
|
||||||
my $reply = geturl(
|
my $reply = geturl(
|
||||||
proxy => opt('proxy'),
|
proxy => opt('proxy'),
|
||||||
url => "$config{$h}{'server'}$endpointPath?hostname=$h&myip=$ip",
|
url => "$config{$h}{'server'}/v0/dyndns/update?hostname=$h&myip=$ip",
|
||||||
login => $config{$h}{'login'},
|
login => $config{$h}{'login'},
|
||||||
password => $config{$h}{'password'},
|
password => $config{$h}{'password'},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue