Custom Query (50 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 50)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#39 fixed Trouble with debian DELL OMSA package sanplis@…
Description

Hi guys,

I assume you are still hosting the DELL OMSA package for debian based systems.

For some time now, I have been getting auth-key errors and I haven't been able to reload the public key which should be stored at http://ftp.sara.nl/debian_sara.asc. Currently, I am getting an error 404 as the file doesn't exist anymore. Not dramatic but not nice either.

Now, I cannot connect to your ftp server (ftp.sara.nl) anymore as the service seems down (Connection refused). Any word on when the service will go back up?

Thanks and kind regards, Sandro

#34 fixed in need of the .changes bas josephboiteau@…
Description

Hi,
some tools need .changes file to integrate a debian package.

You apparently just publish the .deb file, no .changes, empty sources
Is it a wish ? why ?

Thanks for your answers.

#33 fixed honor SNMP status on upgrade. bas r.epping@…
Description

Currently on upgrades of dellomsa the status of SNMP is lost.

SNMP is by default disables as the file /opt/dell/srvadmin/dataeng/dcsnmp.off is in the package. This file is deleted by /etc/init.d/dataeng enablesnmp

Maybe it is an option to mark this file as a conffile.

An other option is to temporarily store the SNMP status on upgrade. For example with the patches below.

--- /dev/null   2008-02-13 09:50:57.160000250 +0000
+++ dellomsa.preinst    2008-04-29 10:41:58.969734953 +0000
@@ -0,0 +1,8 @@
+#!/bin/sh
+#
+SRVADMIN_DIR="/opt/dell/srvadmin"
+
+if /etc/init.d/dataeng getsnmpstatus
+then
+  touch ${SRVADMIN_DIR}/snmp-was-enabled
+fi

--- dellomsa.postinst.orig      2008-01-16 09:18:10.000000000 +0000
+++ dellomsa.postinst   2008-04-29 10:42:26.058543115 +0000
@@ -76,6 +76,14 @@
        mkdir /var/lock/subsys
 fi

+# Re-enable snmp when needed
+#
+if [ -f "${SRVADMIN_DIR}/snmp-was-enabled" ]
+then
+  /etc/init.d/dataeng enablesnmp
+  rm ${SRVADMIN_DIR}/snmp-was-enabled
+fi
+
 # Register init.d scripts
 #
 /usr/sbin/update-rc.d instsvcdrv start 19 2 3 4 5 . stop 20 0 1 6 . >/dev/null

Use of debconf might also be an option.

The RPM scripts might also provide clues on how to handle this.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.