~ubuntu-branches/ubuntu/precise/byobu/precise

« back to all changes in this revision

Viewing changes to bin/release

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2009-05-07 00:54:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090507005443-6ryuqfkl4vphssnw
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
#
 
3
#    release: grab the os/distro release
 
4
#    Copyright (C) 2008 Canonical Ltd.
 
5
#
 
6
#    Authors: Dustin Kirkland <kirkland@canonical.com>
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, version 3 of the License.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 
 
20
if which lsb_release >/dev/null; then
 
21
        if [ "$1" = "--detail" ]; then
 
22
                lsb_release -a 2>/dev/null
 
23
                exit 0
 
24
        fi
 
25
        # If lsb_release is available, use it
 
26
        r=$(lsb_release -s -d)
 
27
        if echo "$r" | grep -qs "^Ubuntu .*\..*\..*$"; then
 
28
                # Use the -d if an Ubuntu LTS
 
29
                printf "\005{=b }%s\005{-} " "$r"
 
30
        else
 
31
                # But for other distros the description
 
32
                # is too long, so build from -i and -r
 
33
                i=$(lsb_release -s -i)
 
34
                r=$(lsb_release -s -r)
 
35
                printf "\005{=b }%s %s\005{-} " "$i" "$r"
 
36
        fi
 
37
elif [ -r "/etc/issue" ]; then
 
38
        if [ "$1" = "--detail" ]; then
 
39
                cat /etc/issue
 
40
                exit 0
 
41
        fi
 
42
        # Otherwise, grab part of /etc/issue
 
43
        printf "\005{=b }%s\005{-} " $(head -n1 /etc/issue | awk '{print $1}')
 
44
else
 
45
        echo "Unknown"
 
46
fi