1
0
Fork 0

Explicitly exit maintainer scripts with 0 status on success.

Debian Policy §6.4 requires maintainer scripts exit with exit status
indicating success or failure, with 0 for success.
This commit is contained in:
Ben Finney 2016-02-25 12:54:23 +11:00 committed by Dr. Tobias Quathamer
parent 9552326695
commit 0987c534ad
4 changed files with 8 additions and 0 deletions

2
debian/postinst vendored
View File

@ -91,3 +91,5 @@ chown root:games /var/games/bsdgames/sail
chmod g+rws /var/games/bsdgames/sail
#DEBHELPER#
exit 0

2
debian/postrm vendored
View File

@ -62,3 +62,5 @@ case "$action" in
esac
#DEBHELPER#
exit 0

2
debian/preinst vendored
View File

@ -81,3 +81,5 @@ if [ "$1" = "upgrade" ] && dpkg --compare-versions "$2" lt 2.8; then
fi
#DEBHELPER#
exit 0

2
debian/prerm vendored
View File

@ -35,3 +35,5 @@ esac
# generated by other debhelper scripts.
#DEBHELPER#
exit 0