* usr/bin/byobu-janitor.in:

- no longer default to enabling ec2 status, LP: #1564320
This commit is contained in:
Dustin Kirkland 2016-04-07 16:23:25 -05:00
commit c74a1d0ac2
2 changed files with 2 additions and 4 deletions

2
debian/changelog vendored
View file

@ -12,6 +12,8 @@ byobu (5.105) unreleased; urgency=medium
- silence stderr
* usr/share/byobu/profiles/bashrc:
- fix color comment
* usr/bin/byobu-janitor.in:
- no longer default to enabling ec2 status, LP: #1564320
[ Mark King ]
* usr/lib/byobu/battery:

View file

@ -82,10 +82,6 @@ for f in status statusrc; do
if [ ! -r "$BYOBU_CONFIG_DIR/$f" ]; then
# Copy from skeleton, if possible
cp -f "$BYOBU_PREFIX/share/$PKG/status/$f" "$BYOBU_CONFIG_DIR/$f"
# Enable ec2_cost, if we're in ec2 and seeding a new setup
if metadata_available; then
$BYOBU_SED_INLINE -e "s/#ec2_cost/ec2_cost/g" "$($BYOBU_READLINK -f $BYOBU_CONFIG_DIR/$f)"
fi
fi
done