From 3a4356aa59517f882bd979f86b32bfaa0fed0fb3 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Thu, 2 Jun 2011 15:20:05 -0400 Subject: [PATCH] * usr/bin/byobu-config: LP: #789274 - fix autodetection of byobu launch --- debian/changelog | 5 +++++ usr/bin/byobu-config | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b72e2251..4fb9ca9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ byobu (4.9) unreleased; urgency=low + [ Dustin Kirkland ] * === added directory usr/sbin, usr/sbin/byobu-classroom, usr/share/byobu/profiles/classroom: - added to the byobu repository for source control, but not yet @@ -10,6 +11,10 @@ byobu (4.9) unreleased; urgency=low * Close LP: #789647 * Close LP: #789408 + [ Emanuele Rocca ] + * usr/bin/byobu-config: LP: #789274 + - fix autodetection of byobu launch + -- Dustin Kirkland Wed, 01 Jun 2011 09:24:50 -0500 byobu (4.8-0ubuntu1) oneiric; urgency=low diff --git a/usr/bin/byobu-config b/usr/bin/byobu-config index 434fa8a1..dc0b5860 100755 --- a/usr/bin/byobu-config +++ b/usr/bin/byobu-config @@ -527,7 +527,7 @@ def chgesc(screen, size): def autolaunch(): if os.path.exists(DATA+"/disable-autolaunch"): return 0 - if commands.getstatusoutput('grep -qs byobu-launcher %s/.profile' % HOME)[0] == 0: + if commands.getstatusoutput('grep -qs byobu-launch %s/.profile' % HOME)[0] == 0: return 1 if os.path.exists("/etc/profile.d/Z98-%s.sh" % PKG): return 1