Make use of tabs vs spaces consistent

This commit is contained in:
Tore Anderson 2025-02-02 10:34:16 +01:00
parent f0d7c09adf
commit 90d4ac6e70
No known key found for this signature in database
GPG Key ID: 2D362EA9A1F53DBB
1 changed files with 3 additions and 3 deletions

6
clatd
View File

@ -34,8 +34,8 @@ my $VERSION = "1.6nat46";
my %CFG; my %CFG;
$CFG{"quiet"} = 0; # suppress normal output $CFG{"quiet"} = 0; # suppress normal output
$CFG{"debug"} = 0; # debugging output level $CFG{"debug"} = 0; # debugging output level
$CFG{"script-up"} = undef; # sh script to run when starting up $CFG{"script-up"} = undef; # sh script to run when starting up
$CFG{"script-down"} = undef; # sh script to run when shutting down $CFG{"script-down"} = undef; # sh script to run when shutting down
$CFG{"clat-dev"} = "clat"; # TUN interface name to use $CFG{"clat-dev"} = "clat"; # TUN interface name to use
$CFG{"clat-v4-addr"} = "192.0.0.1"; # from RFC 7335 $CFG{"clat-v4-addr"} = "192.0.0.1"; # from RFC 7335
$CFG{"clat-v6-addr"} = undef; # derive from existing SLAAC addr $CFG{"clat-v6-addr"} = undef; # derive from existing SLAAC addr
@ -600,7 +600,7 @@ my $cleanup_remove_proxynd_entry, # true if having added proxynd entry
my $cleanup_remove_nftable; # true if having added an nftable my $cleanup_remove_nftable; # true if having added an nftable
my $cleanup_remove_clat_iprule; # true if having added clat iprule my $cleanup_remove_clat_iprule; # true if having added clat iprule
my $cleanup_restore_local_iprule_prio; # true if having reordered local iprule my $cleanup_restore_local_iprule_prio; # true if having reordered local iprule
my @cleanup_restore_v4_defaultroutes; # temporarily replaced defaultroutes my @cleanup_restore_v4_defaultroutes; # temporarily replaced defaultroutes
sub cleanup_and_exit { sub cleanup_and_exit {
my $exitcode = shift; my $exitcode = shift;