~ubuntu-branches/debian/wheezy/byobu/wheezy

« back to all changes in this revision

Viewing changes to usr/lib/byobu/.common

  • Committer: Package Import Robot
  • Author(s): Alexander Chernyakhovsky
  • Date: 2012-01-11 19:37:34 UTC
  • mfrom: (0.5.3) (0.1.162 precise)
  • Revision ID: package-import@ubuntu.com-20120111193734-89083z97py39gj05
Tags: 5.2-1
* Syncing from Ubuntu. Remaining changes:
  - Switch to dh short syntax
  - Added a substvar ${perl:Depends} dependency into debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
#    .common: common stuff sourced by all scripts
4
 
#
5
 
#    Copyright (C) 2011 Dustin Kirkland
6
 
#
7
 
#    Authors: Dustin Kirkland <kirkland@ubuntu.com>
8
 
#
9
 
#    This program is free software: you can redistribute it and/or modify
10
 
#    it under the terms of the GNU General Public License as published by
11
 
#    the Free Software Foundation, version 3 of the License.
12
 
#
13
 
#    This program is distributed in the hope that it will be useful,
14
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
#    GNU General Public License for more details.
17
 
#
18
 
#    You should have received a copy of the GNU General Public License
19
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 
21
 
if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
22
 
        # Needed to set up $BYOBU_CONFIG_DIR
23
 
        . "${BYOBU_PREFIX}/lib/${PKG}/.dirs"
24
 
 
25
 
        # If the backend is already set (eg. running `byobu-tmux`), do nothing.
26
 
        if [ -z "${BYOBU_BACKEND}" ]; then
27
 
                [ -r "/etc/$PKG/backend" ] && . "/etc/$PKG/backend"
28
 
                [ -r "$BYOBU_CONFIG_DIR/backend" ] && . "$BYOBU_CONFIG_DIR/backend"
29
 
                # Just in case there's no config file at all
30
 
                [ -z "${BYOBU_BACKEND}" ] && BYOBU_BACKEND=screen
31
 
        fi
32
 
 
33
 
        # Creating backend cache
34
 
        [ -d "$BYOBU_RUN_DIR/cache.$BYOBU_BACKEND" ] || mkdir -p "$BYOBU_RUN_DIR/cache.$BYOBU_BACKEND"
35
 
 
36
 
        . "${BYOBU_PREFIX}/lib/${PKG}/.shutil"
37
 
        . "${BYOBU_PREFIX}/lib/${PKG}/.constants"
38
 
        BYOBU_INCLUDED_LIBS=1
39
 
fi