release 2.044001

This commit is contained in:
Oliver Gorwits
2019-09-26 15:01:22 +01:00
parent bd29c0735c
commit 938060494d
4 changed files with 22 additions and 23 deletions

View File

@@ -1,3 +1,9 @@
2.044001 - 2019-09-26
[BUG FIXES]
* #654 Device Ports list is not sorting numerically
2.044000 - 2019-09-23 2.044000 - 2019-09-23
[NEW FEATURES] [NEW FEATURES]

View File

@@ -123,7 +123,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.044000" "version" : "2.044001"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -820,6 +820,6 @@
"x_IRC" : "irc://irc.freenode.org/#netdisco", "x_IRC" : "irc://irc.freenode.org/#netdisco",
"x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users"
}, },
"version" : "2.044000", "version" : "2.044001",
"x_serialization_backend" : "JSON::PP version 2.97001" "x_serialization_backend" : "JSON::PP version 2.97001"
} }

View File

@@ -23,7 +23,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.044000' version: '2.044001'
App::Netdisco::AnyEvent::Nbtstat: App::Netdisco::AnyEvent::Nbtstat:
file: lib/App/Netdisco/AnyEvent/Nbtstat.pm file: lib/App/Netdisco/AnyEvent/Nbtstat.pm
App::Netdisco::Backend::Job: App::Netdisco::Backend::Job:
@@ -564,5 +564,5 @@ resources:
homepage: http://netdisco.org/ homepage: http://netdisco.org/
license: http://opensource.org/licenses/bsd-license.php license: http://opensource.org/licenses/bsd-license.php
repository: https://github.com/netdisco/netdisco repository: https://github.com/netdisco/netdisco
version: '2.044000' version: '2.044001'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018' x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

View File

@@ -4,7 +4,7 @@ use strict;
use warnings; use warnings;
use 5.010_000; use 5.010_000;
our $VERSION = '2.044000'; our $VERSION = '2.044001';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME
@@ -219,11 +219,11 @@ port control, etc):
After installing Netdisco for the first time, you must manually discover at After installing Netdisco for the first time, you must manually discover at
least one device on your network. Choose a device which speaks CDP, FDP, or least one device on your network. Choose a device which speaks CDP, FDP, or
LLDP and thus knows about its neighbors; Netdisco will then start following LLDP and knows about its neighbors; Netdisco will then start following this
this chain of neighbors to discover the rest of your network. chain of neighbors to discover the rest of your network.
To do this, either go to the web interface and enter an IP or fully qualified Either go to the web interface and enter an IP or fully qualified domain name,
domain name, or perform the following step at the command line: OR perform the following step at the command line:
~/bin/netdisco-do discover {name or IP address of a switch or router} ~/bin/netdisco-do discover {name or IP address of a switch or router}
@@ -242,20 +242,7 @@ L<Release Notes|https://github.com/netdisco/netdisco/wiki/Release-Notes>.
=head1 Upgrading from 2.x =head1 Upgrading from 2.x
I<note:> Whenever you upgrade your operating system, you should delete the Always review the latest L<Release Notes|https://github.com/netdisco/netdisco/wiki/Release-Notes>.
C<~/perl5> directory and re-run the C<curl> command above, to update
Netdisco's C library bindings.
I<also note:> You should take care not to run C<< netdisco-backend >> and the
Netdisco 1.x daemon at the same time. Similarly, if you use the device
discovery with Netdisco 2, disable your system's cron jobs for the Netdisco
1.x poller.
If you're running a version of Netdisco prior to 2.x then you should follow
the full installation instructions, above. This process is for upgrading
version 2.x only.
Before upgrading always review the latest L<Release Notes|https://github.com/netdisco/netdisco/wiki/Release-Notes>.
Then the process below should be run for each installation: Then the process below should be run for each installation:
# upgrade Netdisco # upgrade Netdisco
@@ -271,6 +258,12 @@ Then the process below should be run for each installation:
# restart the backend workers (wherever you run them) # restart the backend workers (wherever you run them)
~/bin/netdisco-backend restart ~/bin/netdisco-backend restart
Furthermore, whenever you upgrade your Operating System, you must delete the
C<~/perl5> directory and re-run the following command, to update Netdisco's C
library bindings:
curl -L https://cpanmin.us/ | perl - --notest --local-lib ~/perl5 App::Netdisco
=head1 Tips and Tricks =head1 Tips and Tricks
=head2 Searching =head2 Searching