mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -07:00
releasing 2.64
This commit is contained in:
parent
64950290d4
commit
7406f73036
2 changed files with 9 additions and 8 deletions
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -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
10
debian/postinst
vendored
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue