usr/bin/byobu-reconnect-sockets

This commit is contained in:
Dustin Kirkland 2010-06-24 09:39:03 -05:00
commit 9e26774707
2 changed files with 13 additions and 7 deletions

1
debian/changelog vendored
View file

@ -6,6 +6,7 @@ byobu (2.81) unreleased; urgency=low
- usr/lib/byobu/release - usr/lib/byobu/release
- usr/lib/services - usr/lib/services
- usr/bin/byobu-status-detail - usr/bin/byobu-status-detail
- usr/bin/byobu-reconnect-sockets
* usr/bin/byobu-config, usr/share/doc/byobu/help.txt: improve help * usr/bin/byobu-config, usr/share/doc/byobu/help.txt: improve help
text, per feedback from Turnkey Linux users text, per feedback from Turnkey Linux users

View file

@ -22,13 +22,18 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
if ! echo $- | grep -qs i; then case "$-" in
echo *i*)
echo "ERROR: You must source this file, rather than execute it." # no-op
echo " . $0" ;;
echo *)
#exit 1 echo
fi echo "ERROR: You must source this file, rather than execute it."
echo " . $0"
echo
#exit 1
;;
esac
# Establish gpg-agent socket, helps when reconnecting to a detached session # Establish gpg-agent socket, helps when reconnecting to a detached session
# Sorry, ls -t is needed here, to sort by time # Sorry, ls -t is needed here, to sort by time