Please explain this odd lintian error

2001-10-08 Thread Jaldhar H. Vyas

lintian -i (v1.20.16) sez:

W: webmin-ssl: postinst-does-not-load-confmodule
N:
N:   Even if your postinst does not involve debconf, you currently need to
N:   make sure it loads one of the debconf libraries. This will be changed
N:   in the future.
N:

But the postinst looks like this:

$ head debian/postinst
#! /bin/sh
# postinst script for webmin
#
# see: dh_installdeb(1)

set -e

# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0

Is this a false positive or am I doing something wrong?


-- 
Jaldhar H. Vyas [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




RE: Please explain this odd lintian error

2001-10-08 Thread Sean 'Shaleh' Perry


On 08-Oct-2001 Jaldhar H. Vyas wrote:
 lintian -i (v1.20.16) sez:
 
 W: webmin-ssl: postinst-does-not-load-confmodule
 N:
 N:   Even if your postinst does not involve debconf, you currently need to
 N:   make sure it loads one of the debconf libraries. This will be changed
 N:   in the future.
 N:
 
 
 Is this a false positive or am I doing something wrong?

The code is in /usr/share/lintian/checks/debconf.  Please give it a look and
point out any flaws.  From the snippet you posted all looks sane in your code. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Please explain this odd lintian error

2001-10-08 Thread Jaldhar H. Vyas
lintian -i (v1.20.16) sez:

W: webmin-ssl: postinst-does-not-load-confmodule
N:
N:   Even if your postinst does not involve debconf, you currently need to
N:   make sure it loads one of the debconf libraries. This will be changed
N:   in the future.
N:

But the postinst looks like this:

$ head debian/postinst
#! /bin/sh
# postinst script for webmin
#
# see: dh_installdeb(1)

set -e

# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0

Is this a false positive or am I doing something wrong?


-- 
Jaldhar H. Vyas [EMAIL PROTECTED]



RE: Please explain this odd lintian error

2001-10-08 Thread Sean 'Shaleh' Perry

On 08-Oct-2001 Jaldhar H. Vyas wrote:
 lintian -i (v1.20.16) sez:
 
 W: webmin-ssl: postinst-does-not-load-confmodule
 N:
 N:   Even if your postinst does not involve debconf, you currently need to
 N:   make sure it loads one of the debconf libraries. This will be changed
 N:   in the future.
 N:
 
 
 Is this a false positive or am I doing something wrong?

The code is in /usr/share/lintian/checks/debconf.  Please give it a look and
point out any flaws.  From the snippet you posted all looks sane in your code.