mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 22:34:23 -07:00
parent
794b471b5c
commit
7320864d88
2 changed files with 6 additions and 0 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -20,6 +20,8 @@ byobu (4.46) unreleased; urgency=low
|
||||||
- reorder byobu-ctrl-a to offer screen first, then emacs mode
|
- reorder byobu-ctrl-a to offer screen first, then emacs mode
|
||||||
- make byobu-ctrl-a slighty more compatible with tmux (not quite
|
- make byobu-ctrl-a slighty more compatible with tmux (not quite
|
||||||
there yet...)
|
there yet...)
|
||||||
|
* usr/bin/byobu: LP: #713879
|
||||||
|
- add ulimit checks to byobu -v
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 31 Oct 2011 09:46:46 -0400
|
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 31 Oct 2011 09:46:46 -0400
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,10 @@ if [ "$#" = "1" ]; then
|
||||||
-v|--version)
|
-v|--version)
|
||||||
echo "$PKG version $VERSION"
|
echo "$PKG version $VERSION"
|
||||||
exec $BYOBU_BACKEND $BYOBU_ARG_VERSION
|
exec $BYOBU_BACKEND $BYOBU_ARG_VERSION
|
||||||
|
# Check ulimits
|
||||||
|
[ $(ulimit -n) -ge 15 ] || echo "WARNING: ulimit -n is too low" 1>&2
|
||||||
|
[ $(ulimit -u) -ge 1600 ] || echo "WARNING: ulimit -u is too low" 1>&2
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue