From: Michael Tremer Date: Thu, 9 Jan 2014 11:43:39 +0000 (+0100) Subject: OpenVPN converter: Fix coding style and verbose output. X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=commitdiff_plain;h=42dbdb2088b7877ad1626d19db47089e07996b37 OpenVPN converter: Fix coding style and verbose output. --- diff --git a/src/scripts/convert-ovpn b/src/scripts/convert-ovpn index 1e99bce5f..58921a587 100755 --- a/src/scripts/convert-ovpn +++ b/src/scripts/convert-ovpn @@ -27,25 +27,34 @@ # # ############################################################################### +require '/var/ipfire/general-functions.pl'; + my %configovpn=(); my $ccdpath="/var/ipfire/ovpn/ccd/"; my $ovpnconfig="/var/ipfire/ovpn/ovpnconfig"; -require '/var/ipfire/general-functions.pl'; &General::readhasharray ($ovpnconfig,\%configovpn); -&check_config; +&check_config(); +sub check_config { + print "Converting CCD files...\n"; + chdir($ccdpath); -sub check_config -{ - print "\n"; foreach my $key (sort keys %configovpn){ - if ($configovpn{$key}[3] eq 'host' && $configovpn{$key}[2]=~" "){ - my $ccdname=$configovpn{$key}[2]; - $ccdname =~ tr/ /_/; - chdir($ccdpath); - rename($ccdname,$configovpn{$key}[2]); + # Skip everything else but roadwarrior connections. + next if ($configovpn{$key}[3] ne 'host'); + + # Skip all connections with no space in the CN name. + next if ($configovpn{$key}[2] !~ " "); + + my $ccdname = $configovpn{$key}[2]; + $ccdname =~ tr/ /_/; + + # Rename the CCD file if one with the old format exists. + if (-e "$ccdname") { + print " Renaming $ccdname -> $configovpn{$key}[2]...\n"; + rename($ccdname, $configovpn{$key}[2]); } } }