diff options
Diffstat (limited to 'lib/network/connection.pm')
-rw-r--r-- | lib/network/connection.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/network/connection.pm b/lib/network/connection.pm index 98e94da..4a70779 100644 --- a/lib/network/connection.pm +++ b/lib/network/connection.pm @@ -149,6 +149,7 @@ sub load_interface_settings { $self->{control}{userctl} = $self->get_ifcfg_bool('USERCTL'); $self->{control}{metric} = $self->{ifcfg}{METRIC}; $self->{control}{mtu} = $self->{ifcfg}{MTU}; + $self->{control}{accounting} = $self->{ifcfg}{ACCOUNTING}; } #- override to return 1 if the connection network scan is slow @@ -241,6 +242,7 @@ sub get_control_settings { [ { text => N("Allow users to manage the connection"), val => \$self->{control}{userctl}, type => "bool" }, { text => N("Start the connection at boot"), val => \$self->{control}{onboot}, type => "bool" }, + { text => N("Account network traffic"), val => \$self->{control}{accounting}, type => "bool" }, { label => N("Metric"), val => \$self->{control}{metric}, advanced => 1 }, { label => N("MTU"), val => \$self->{control}{mtu}, advanced => 1, help => N("Maximum size of network message (MTU). If unsure, left blank.") }, @@ -252,6 +254,7 @@ sub build_ifcfg_settings { put_in_hash($o_options, { DEVICE => $self->get_interface, ONBOOT => bool2yesno($self->{control}{onboot}), + ACCOUNTING => bool2yesno($self->{control}{accounting}), USERCTL => bool2yesno($self->{control}{userctl}), METRIC => $self->{control}{metric}, MTU => $self->{control}{mtu}, |