]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
OpenVPN converter: Fix coding style and verbose output.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 9 Jan 2014 11:43:39 +0000 (12:43 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 9 Jan 2014 11:43:39 +0000 (12:43 +0100)
src/scripts/convert-ovpn

index 1e99bce5f09961755e57fe9eb6767f6b9d01d86e..58921a587c4bf5836cb4cf99f7bdb9290719ff17 100755 (executable)
 #                                                                             #
 ###############################################################################
 
+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]);
                }
        }
 }