Lintian Checks
Don't use bashisms in debian scripts.
committer: Markus Bröker <mbroeker@largo.homelinux.org>
--- a/debian/changelog
+++ b/debian/changelog
@@ -34,4 +34,4 @@
* common.h added - common types for the project
* useful addons to the built process
- -- Markus Broeker <mbroeker@largo.homelinux.org> Fri, 02 Jan 2009 11:00:00 +0100
+ -- Markus Bröker <mbroeker@largo.homelinux.org> Fri, 02 Jan 2009 11:00:00 +0100
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
Source: mcbot
Section: net
Priority: extra
-Maintainer: Markus Broeker <mbroeker@largo.homelinux.org>
+Maintainer: Markus Bröker <mbroeker@largo.homelinux.org>
Build-Depends: debhelper (>= 5)
Standards-Version: 3.7.2
@@ -9,4 +9,4 @@
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: A very small irc bot
- mcbot is a very small irc bot with a factoids database.
+ This bot features a factoids database and is very lightweight.
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,22 +1,16 @@
-This package was debianized by Markus Broeker <mbroeker@largo.homelinux.org> on
+This package was debianized by Markus Bröker <mbroeker@largo.homelinux.org> on
Tue, 25 Mar 2008 20:32:44 +0100.
It was downloaded from http://largo.homelinux.org
-Upstream Author(s):
-
+Upstream Author:
mbroeker@largo.homelinux.org
Copyright:
-
- mbroeker@largo.homelinux.org
+ © 2009 mbroeker@largo.homelinux.org
License:
-
GPL
-The Debian packaging is (C) 2008, Markus Broeker <mbroeker@largo.homelinux.org> and
+The Debian packaging is (C) 2008, Markus Bröker <mbroeker@largo.homelinux.org> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
-
-# Please also look if there are files or directories which have a
-# different copyright/license attached and list them here.
--- a/debian/postinst
+++ b/debian/postinst
@@ -38,7 +38,7 @@
echo "Setting permissions for /var/lib/mcbot/.mcbotrc to 600"
chmod 600 /var/lib/mcbot/.mcbotrc
echo "ENTER /etc/init.d/mcbot restart after editing .mcbotrc"
- update-rc.d mcbot defaults &>/dev/null
+ update-rc.d mcbot defaults >/dev/null 2>&1
invoke-rc.d mcbot restart
;;
--- a/debian/postrm
+++ b/debian/postrm
@@ -27,7 +27,7 @@
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- update-rc.d -f mcbot remove &>/dev/null
+ update-rc.d -f mcbot remove >/dev/null 2>&1
userdel mcbot
;;