Update verion #

This commit is contained in:
David Schmenk 2017-05-20 15:21:00 -07:00
parent 5a59fa93fd
commit dcb6c8e904
3 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,5 @@
PACKAGE=a2pi
VERSION=0.2.1
VERSION=0.2.2
DIST=$(PACKAGE)-$(VERSION)
DISTDIR=./$(DIST)

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
a2pi (0.2.2-0) unstable; urgency=low
* First systemd compatibility
-- David Schmenk <dschmenk@gmail.com> Sat, 20 May 2017 15:15:30 -0800
a2pi (0.2.1-0) unstable; urgency=low
* First Jessie package

4
debian/postinst vendored
View File

@ -83,8 +83,8 @@ case "$1" in
#
# Add a2pi service to systemd
#
if [ -f /usr/share/a2pi/a2pi.service ] && [ -x systemctl ] ; then
cp /usr/share/a2pi/a2pi.service /lib/systemd/
if [ -f /usr/share/a2pi/a2pi.service ] && [ -d /lib/systemd/system ] ; then
cp /usr/share/a2pi/a2pi.service /lib/systemd/system
systemctl enable a2pi
fi
;;