releasing 2.64

This commit is contained in:
Dustin Kirkland 2010-03-10 19:06:38 -06:00
commit 7406f73036
2 changed files with 9 additions and 8 deletions

7
debian/changelog vendored
View file

@ -1,8 +1,9 @@
byobu (2.64) unreleased; urgency=low byobu (2.64-0ubuntu1) lucid; urgency=low
* UNRELEASED * debian/postinst: fix bug introduced by last upload, $d contains
$DIR
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 10 Mar 2010 18:49:05 -0600 -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 10 Mar 2010 19:06:34 -0600
byobu (2.63-0ubuntu1) lucid; urgency=low byobu (2.63-0ubuntu1) lucid; urgency=low

10
debian/postinst vendored
View file

@ -20,11 +20,11 @@ fi
DIR="/var/run/screen" DIR="/var/run/screen"
if [ -d "$DIR" ]; then if [ -d "$DIR" ]; then
for d in "$DIR"/*; do for d in "$DIR"/*; do
[ -d "$DIR/$d" ] || continue [ -d "$d" ] || continue
touch "$DIR/$d/$PKG.reload-required" touch "$d/$PKG.reload-required"
u=$(echo "$d" | sed "s:^S-::") u=$(echo "$d" | sed "s:^.*/S-::")
chown $u "$DIR/$d/$PKG.reload-required" chown $u "$d/$PKG.reload-required"
chmod 700 "$DIR/$d/$PKG.reload-required" chmod 700 "$d/$PKG.reload-required"
done done
fi fi