Changeset 8273 in genesis for nodes/genesis-to-yaml.pl


Ignore:
Timestamp:
Aug 8, 2010, 7:55:31 PM (14 years ago)
Author:
rick
Message:

Field fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nodes/genesis-to-yaml.pl

    r8270 r8273  
    7878    %tmp = (
    7979        'dhcp' => 'False',
    80         'compass_direction' => 'None',
     80        'compass' => 'None',
    8181        'interface' => $if,
    8282        );
     
    9494            } elsif ($key =~ /^mode$/i) {
    9595                if ($value eq 'master') {
    96                     $value = 'ms';
     96                    $value = 'ap-wds';
    9797                } else { # managed
    98                     $value = 'mn';
     98                    $value = 'station-wds';
    9999                }
    100100            } elsif ($key =~ /^polar$/i) {
     
    118118                    $direction = 'None';
    119119                }
    120                 $tmp{'compass_direction'} = $direction;
     120                $tmp{'compass'} = $direction;
    121121            } elsif ($key =~ /^gain$/i) {
    122122                $value =~ s/dbi//;
     
    127127# ethernet2wifi bridges
    128128    if ( $tmp{extra_type} eq 'eth2wifibridge' ) {
    129         $tmp{type} = '11b';
     129        $tmp{type} = 'eth';
    130130    }
    131131# 11a
Note: See TracChangeset for help on using the changeset viewer.