Send Netdot-devel mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://osl.uoregon.edu/mailman/listinfo/netdot-devel
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Netdot-devel digest..."


Today's Topics:

   1. [SCM] Netdot branch netdot-1.0 updated.
      netdot-1.0.6-16-g3408e2a ([email protected])
   2. [Netdot - Bug #1817] (Resolved) Missing dependencies      - ubuntu
      14.04 ([email protected])


----------------------------------------------------------------------

Message: 1
Date: Thu, 26 Jun 2014 11:27:28 -0700
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch netdot-1.0 updated.
        netdot-1.0.6-16-g3408e2a
To: [email protected]
Message-ID: <[email protected]>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Netdot".

The branch, netdot-1.0 has been updated
       via  3408e2abc159483380c38c4654a71c6c26c64e61 (commit)
      from  851b1a6ef74325605a56475ca8e5e911930bab3c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 bin/perldeps.pl               | 3 ++-
 etc/netdot_apache2_local.conf | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Netdot


------------------------------

Message: 2
Date: Thu, 26 Jun 2014 11:36:04 -0700
From: [email protected]
Subject: [Netdot-devel] [Netdot - Bug #1817] (Resolved) Missing
        dependencies    - ubuntu 14.04
To: [email protected], [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=utf-8


Issue #1817 has been updated by Carlos Vicente.

Category set to Netdot
Status changed from New to Resolved
Assignee set to Carlos Vicente
Target version set to 1.0.7
Resolution set to fixed

The files have been patched and the libsnmp-info-perl package has been upgraded 
to 3.17-1 with the additional dependency.

Many thanks.

cv
----------------------------------------
Bug #1817: Missing dependencies - ubuntu 14.04
https://osl.uoregon.edu/redmine/issues/1817#change-3193

Author: Brian Candler
Status: Resolved
Priority: Normal
Assignee: Carlos Vicente
Category: Netdot
Target version: 1.0.7
Resolution: fixed


Miscellaneous errors during install of Netdot on ubuntu 14.04; the fixes are 
pretty simple.

Problem 1:

<pre>
...
A new /etc/snmp/snmp.conf needs to be installed to point to the newly installed 
MIB files.
The current file will be backed up. Continue? [y/n] y
mv: cannot stat ?/etc/snmp/snmp.conf?: No such file or directory
There was a problem running mv -f /etc/snmp/snmp.conf 
/etc/snmp/snmp.conf.netdot_install
make: *** [apt-install] Error 2
</pre>

Workaround: <code>sudo apt-get install snmp</code> then re-run <code>make 
apt-install</code>

Fix:

<pre>
--- a/bin/perldeps.pl
+++ b/bin/perldeps.pl
@@ -64,7 +64,8 @@ my @DEPS = (
     {apt=> 'libssl-dev', rpm=>'openssl-devel'}, # needed by Net::DNS::ZoneFile:
     {cpan=>'Net::DNS::ZoneFile::Fast', apt=> 'dnssec-tools', rpm=>''},
     {cpan=>'Socket6', apt=> 'libsocket6-perl', rpm=>'perl-Socket6'},
-    {cpan=>'XML::Simple', apt=>'libxml-simple-perl', rpm=>'perl-XML-Simple'}
+    {cpan=>'XML::Simple', apt=>'libxml-simple-perl', rpm=>'perl-XML-Simple'},
+    {apt=>'snmp'},  # we expect snmp.conf
     ) ;

</pre>

Problem 2:

<pre>
...
SNMP::Info 2.06...................................MISSING
...
</pre>

What has happened is that libsnmp-info-perl has been installed, but not 
libsnmp-perl (which should be its dependency).

<pre>
$ dpkg-query -l | grep snmp
ii  libsnmp-base                          5.7.2~dfsg-8.1ubuntu3           all   
       SNMP configuration script, MIBs and documentation
ii  libsnmp-info-perl                     3.13-1                          all   
       OO Interface to Network devices and MIBs through SNMP
ii  libsnmp30:amd64                       5.7.2~dfsg-8.1ubuntu3           amd64 
       SNMP (Simple Network Management Protocol) library
ii  snmp                                  5.7.2~dfsg-8.1ubuntu3           amd64 
       SNMP (Simple Network Management Protocol) applications
</pre>

The problem is that the libsnmp-info-perl 3.13 package is missing a dependency 
on libsnmp-perl:

<pre>
Version: 3.13-1
Depends: perl
Filename: unstable/libsnmp-info-perl_3.13-1_all.deb

cf.

Version: 3.11-1
Depends: perl, libsnmp-perl
Suggests: netdisco-mibs-installer
Filename: pool/universe/libs/libsnmp-info-perl/libsnmp-info-perl_3.11-1_all.deb
</pre>

Workaround: <code>sudo apt-get install libsnmp-perl</code> - although the 
proper fix is to update the dependency.

Problem 3:

<pre>
sudo service apache2 restart
[Fri Jun 20 14:03:51.039859 2014] [so:warn] [pid 20696:tid 140375836866432] 
AH01574: module apreq_module is already loaded, skipping
</pre>

Fix: comment out this line

<pre>
#LoadModule apreq_module /usr/lib/apache2/modules/mod_apreq2.so
</pre>

(it's already commented out in netdot_apache24_local.conf)



-- 
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://osl.uoregon.edu/redmine/my/account


------------------------------

_______________________________________________
Netdot-devel mailing list
[email protected]
https://osl.uoregon.edu/mailman/listinfo/netdot-devel


End of Netdot-devel Digest, Vol 87, Issue 9
*******************************************

Reply via email to