* usr/lib/byobu/services:

- Fix reading services from $BYOBU_CONFIG_DIR/statusrc
This commit is contained in:
Jeffery To 2019-05-27 03:15:02 +08:00
commit 0875bfed2d
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -36,6 +36,8 @@ byobu (5.128) unreleased; urgency=medium
- Remove unnecessary awk call; wc -l only outputs one value - Remove unnecessary awk call; wc -l only outputs one value
* usr/lib/byobu/release: * usr/lib/byobu/release:
- Fix typo - Fix typo
* usr/lib/byobu/services:
- Fix reading services from $BYOBU_CONFIG_DIR/statusrc
* usr/share/byobu/keybindings/f-keys.tmux: * usr/share/byobu/keybindings/f-keys.tmux:
- Remove -k for new-window. In older versions of tmux, -k without - Remove -k for new-window. In older versions of tmux, -k without
-t <target-window> had no effect. In tmux 2.8, -k without -t will -t <target-window> had no effect. In tmux 2.8, -k without -t will

View file

@ -43,7 +43,7 @@ service_running() {
} }
__services() { __services() {
local services= local services="$SERVICES"
# Users can define a list of services to monitor in $BYOBU_CONFIG_DIR/status # Users can define a list of services to monitor in $BYOBU_CONFIG_DIR/status
if [ -z "$services" ]; then if [ -z "$services" ]; then
if [ -f "/etc/eucalyptus/eucalyptus.conf" ]; then if [ -f "/etc/eucalyptus/eucalyptus.conf" ]; then