diff options
| author | Daniil Baturin <daniil@baturin.org> | 2014-09-03 03:08:59 +0700 |
|---|---|---|
| committer | Daniil Baturin <daniil@baturin.org> | 2014-09-03 03:08:59 +0700 |
| commit | c3ef70583eb2c60b5c83e1c5711906be2b496da4 (patch) | |
| tree | c9a90bfcc906652068e2fada793911e4a25e3f46 /scripts | |
| parent | 7ba1d3672cf9d7d34135ebec447b4a95766457bb (diff) | |
| parent | 3e62229285ce90c6b56eab5f79f1559c4156641d (diff) | |
| download | vyatta-cfg-system-c3ef70583eb2c60b5c83e1c5711906be2b496da4.tar.gz vyatta-cfg-system-c3ef70583eb2c60b5c83e1c5711906be2b496da4.zip | |
Merge pull request #20 from cyclops8456/helium
Bug #261: vyatta-cfg-system: remove quotes from SysContact and SysLocation
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/snmp/vyatta-snmp.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/snmp/vyatta-snmp.pl b/scripts/snmp/vyatta-snmp.pl index a39b517b..6423db15 100755 --- a/scripts/snmp/vyatta-snmp.pl +++ b/scripts/snmp/vyatta-snmp.pl @@ -224,17 +224,17 @@ sub snmp_get_values { $config->setLevel($snmp_level); my $contact = $config->returnValue("contact"); if (defined $contact) { - print "syscontact \"$contact\" \n"; + print "SysContact $contact \n"; } my $description = $config->returnValue("description"); if (defined $description) { - print "sysdescr \"$description\" \n"; + print "SysDescr $description \n"; } my $location = $config->returnValue("location"); if (defined $location) { - print "syslocation \"$location\" \n"; + print "SysLocation $location \n"; } } |
