# HG changeset patch # User Markus Bröker # Date 1239390204 -7200 # Node ID 3fedae1f6ceba479944a5c166af090c44e59d6d0 # Parent 900bc2a53fd7ba6acfb0fedb3dfa848422316e4a Lintian Checks Don't use bashisms in debian scripts. committer: Markus Bröker diff --git a/debian/changelog b/debian/changelog --- 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 Fri, 02 Jan 2009 11:00:00 +0100 + -- Markus Bröker Fri, 02 Jan 2009 11:00:00 +0100 diff --git a/debian/control b/debian/control --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: mcbot Section: net Priority: extra -Maintainer: Markus Broeker +Maintainer: Markus Bröker 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. diff --git a/debian/copyright b/debian/copyright --- a/debian/copyright +++ b/debian/copyright @@ -1,22 +1,16 @@ -This package was debianized by Markus Broeker on +This package was debianized by Markus Bröker 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 and +The Debian packaging is (C) 2008, Markus Bröker 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. diff --git a/debian/postinst b/debian/postinst --- 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 ;; diff --git a/debian/postrm b/debian/postrm --- 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 ;;