summaryrefslogtreecommitdiff
path: root/scripts/vyos-update-nhrp.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/vyos-update-nhrp.pl')
-rw-r--r--scripts/vyos-update-nhrp.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyos-update-nhrp.pl b/scripts/vyos-update-nhrp.pl
index 0134c71..b4ce8bb 100644
--- a/scripts/vyos-update-nhrp.pl
+++ b/scripts/vyos-update-nhrp.pl
@@ -105,7 +105,7 @@ sub configure_nhrp_tunnels {
if (@nhrp_tunnels) {
foreach my $nhrp_tunnel(@nhrp_tunnels) {
if ($nhrp_tunnel ~~ @tunnels) {
- if ($config_tun->returnValue("$nhrp_tunnel encapsulation") eq "gre" && ! defined $config_tun->returnValue("$nhrp_tunnel remote-ip")) {
+ if ($config_tun->returnValue("$nhrp_tunnel encapsulation") eq "gre" && ! $config_tun->exists("$nhrp_tunnel remote-ip")) {
my @conf_file = tunnel_config($nhrp_tunnel);
open (my $fh,">>$conffile");
foreach (@conf_file) {