forked from tryphon/rivendell2-debian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_distro.sh
executable file
·108 lines (104 loc) · 2.92 KB
/
get_distro.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/bin/bash
# get_distro.sh
#
# Try to determine the distribution name and version of the host machine.
# Used as part of the AR_GET_DISTRO() macro.
#
# (C) Copyright 2012 Fred Gleason <[email protected]>
#
# $Id: get_distro.sh,v 1.1.1.1 2014/02/17 13:26:17 cvs Exp $
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
case "$1" in
NAME)
if test -f /etc/SuSE-release ; then
echo -n "SuSE"
exit 0
fi
if test -f /etc/debian_version ; then
echo -n "Debian"
exit 0
fi
if test -f /etc/redhat-release ; then
echo -n "RedHat"
exit 0
fi
if test `uname` = "Darwin" ; then
echo -n "OS X"
exit 0
fi
echo -n "unknown"
;;
VERSION)
if test -f /etc/SuSE-release ; then
cat /etc/SuSE-release | sed "/SE/ d;s/VERSION = //"
exit 0
fi
if test -f /etc/debian_version ; then
cat /etc/debian_version
exit 0
fi
if test -f /etc/redhat-release ; then
VER=`awk '/release/ {print $3}' /etc/redhat-release`
if test $VER = "release" ; then
VER=`awk '/release/ {print $4}' /etc/redhat-release`
fi
echo $VER
exit 0
fi
if test `uname` = "Darwin" ; then
echo -n `uname -r`
exit 0
fi
;;
MAJOR)
if test -f /etc/SuSE-release ; then
cat /etc/SuSE-release | sed "/SE/ d;s/VERSION = //" | awk -F '.' '{print $1}'
exit 0
fi
if test -f /etc/debian_version ; then
cat /etc/debian_version | awk -F '.' '{print $1}'
exit 0
fi
if test -f /etc/redhat-release ; then
VER=`awk '/release/ {print $3}' /etc/redhat-release`
if test $VER = "release" ; then
VER=`awk '/release/ {print $4}' /etc/redhat-release`
fi
echo $VER | awk -F '.' '{print $1}'
exit 0
fi
;;
MINOR)
if test -f /etc/SuSE-release ; then
cat /etc/SuSE-release | sed "/SE/ d;s/VERSION = //" | awk -F '.' '{print $2}'
exit 0
fi
if test -f /etc/debian_version ; then
cat /etc/debian_version | awk -F '.' '{print $2}'
exit 0
fi
if test -f /etc/redhat-release ; then
VER=`awk '/release/ {print $3}' /etc/redhat-release`
if test $VER = "release" ; then
VER=`awk '/release/ {print $4}' /etc/redhat-release`
fi
echo $VER | awk -F '.' '{print $2}'
exit 0
fi
;;
esac
# End of get_distro.sh