Skip to content

Commit

Permalink
Bumb version to 1.5-2 w/ support for /usr/local/bin symlink
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
  • Loading branch information
troglobit committed Jul 18, 2014
1 parent 7d39b2f commit 89eef35
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mcjoin/debian/changelog
@@ -1,3 +1,11 @@
mcjoin (1.5-2) unstable; urgency=low

* Take care to setup symlink in /usr/local/bin/mcjoin as well,
and remove it in both preinst and postrm. This to handle systems with a
locally built older version.

-- Joachim Nilsson <troglobit@gmail.com> Fri, 18 Jul 2014 09:22:26 +0200

mcjoin (1.5-1) unstable; urgency=low

* Initial release.
Expand Down
1 change: 1 addition & 0 deletions mcjoin/debian/dirs
@@ -1 +1,2 @@
usr/sbin
usr/local/bin
2 changes: 2 additions & 0 deletions mcjoin/debian/postinst
Expand Up @@ -2,4 +2,6 @@

set -e

ln -s /usr/sbin/mcjoin /usr/local/bin/mcjoin

#DEBHELPER#
2 changes: 2 additions & 0 deletions mcjoin/debian/preinst
Expand Up @@ -2,4 +2,6 @@

set -e

rm -f /usr/local/bin/mcjoin

#DEBHELPER#
2 changes: 2 additions & 0 deletions mcjoin/debian/prerm
Expand Up @@ -2,4 +2,6 @@

set -e

rm -f /usr/local/bin/mcjoin

#DEBHELPER#

0 comments on commit 89eef35

Please sign in to comment.