diff -Nur --no-dereference smeserver-bandwidthd-2.0.1.2.old/root/etc/e-smith/db/configuration/migrate/80bandwidthd smeserver-bandwidthd-2.0.1.2/root/etc/e-smith/db/configuration/migrate/80bandwidthd --- smeserver-bandwidthd-2.0.1.2.old/root/etc/e-smith/db/configuration/migrate/80bandwidthd 2013-12-27 00:43:31.000000000 -0500 +++ smeserver-bandwidthd-2.0.1.2/root/etc/e-smith/db/configuration/migrate/80bandwidthd 2022-06-29 01:07:09.788000000 -0400 @@ -3,6 +3,11 @@ my $rec = $DB->get('bandwidthd') || $DB->new_record('bandwidthd', {type => 'service'}); + if (my $grapCutofff = $DB->get_prop_and_delete('bandwidthd', 'grapCutofff')) { + $rec->merge_props('grapCutoff', $grapCutofff); + } + + my $pw = $rec->prop('DbPassword'); return "" if $pw; $pw = MIME::Base64::encode(int( (1000000000000000) * rand() )); diff -Nur --no-dereference smeserver-bandwidthd-2.0.1.2.old/root/etc/e-smith/templates/etc/bandwidthd.conf/09options smeserver-bandwidthd-2.0.1.2/root/etc/e-smith/templates/etc/bandwidthd.conf/09options --- smeserver-bandwidthd-2.0.1.2.old/root/etc/e-smith/templates/etc/bandwidthd.conf/09options 2013-12-26 14:19:13.000000000 -0500 +++ smeserver-bandwidthd-2.0.1.2/root/etc/e-smith/templates/etc/bandwidthd.conf/09options 2022-06-29 01:02:24.014000000 -0400 @@ -14,7 +14,7 @@ # ip before we bother to graph it #graph_cutoff 1024 { - my $cutoff = $bandwidthd{'grapCutofff'} || "1024"; + my $cutoff = $bandwidthd{'grapCutoff'} || "1024"; $OUT .= "graph_cutoff $cutoff\n" } diff -Nur --no-dereference smeserver-bandwidthd-2.0.1.2.old/root/etc/e-smith/templates.metadata/etc/bandwidthd.conf smeserver-bandwidthd-2.0.1.2/root/etc/e-smith/templates.metadata/etc/bandwidthd.conf --- smeserver-bandwidthd-2.0.1.2.old/root/etc/e-smith/templates.metadata/etc/bandwidthd.conf 2013-12-27 00:49:31.000000000 -0500 +++ smeserver-bandwidthd-2.0.1.2/root/etc/e-smith/templates.metadata/etc/bandwidthd.conf 2022-06-29 01:10:00.155000000 -0400 @@ -1,3 +1,3 @@ -PERMS="0750" +PERMS="0640" UID="root" GID="www"