debian/masqmail-debian
changeset 51:845b243eb46f
removed -e from shebang and put it in separate line
this removes the pedantic lintian info ``maintainer-script-without-set-e''.
Refer to Debian Policy Manual section 10.4 (Scripts) for details.
author | meillo@marmaro.de |
---|---|
date | Fri, 25 Jun 2010 11:49:28 +0200 |
parents | b3ebad9d432d |
children | 4dababf86cfb |
files | masqmail.config postinst postrm preinst |
diffstat | 4 files changed, 8 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/masqmail.config Thu Jun 24 15:50:27 2010 +0200 1.2 +++ b/masqmail.config Fri Jun 25 11:49:28 2010 +0200 1.3 @@ -1,4 +1,5 @@ 1.4 -#!/bin/bash -e 1.5 +#!/bin/bash 1.6 +set -e 1.7 1.8 # Source debconf library. 1.9 . /usr/share/debconf/confmodule
2.1 --- a/postinst Thu Jun 24 15:50:27 2010 +0200 2.2 +++ b/postinst Fri Jun 25 11:49:28 2010 +0200 2.3 @@ -1,4 +1,5 @@ 2.4 -#!/bin/sh -e 2.5 +#!/bin/sh 2.6 +set -e 2.7 2.8 # source debconf library 2.9 . /usr/share/debconf/confmodule