Commit 95208bc27a6e1535788bcb4b3cc12f3b164cf59a
1 parent
694aa8697f
Exists in
master
PG: fix setup issue
Showing
1 changed file
with
1 additions
and
5 deletions
Show diff stats
ingester/setup.sh
... | ... | @@ -13,11 +13,7 @@ ln -s ~/bin/ingester/ingest.sh ~/bin/ingest |
13 | 13 | |
14 | 14 | ARCH=$(uname -m | sed 's/x86_//;s/i[3-6]86/32/') |
15 | 15 | |
16 | -if [ -f /etc/lsb-release ]; then | |
17 | - . /etc/lsb-release | |
18 | - OS=$DISTRIB_ID | |
19 | - VER=$DISTRIB_RELEASE | |
20 | -elif [ -f /etc/debian_version ]; then | |
16 | +if [ -f /etc/debian_version ]; then | |
21 | 17 | OS=Debian # XXX or Ubuntu?? |
22 | 18 | VER=$(cat /etc/debian_version) |
23 | 19 | elif [ -f /etc/redhat-release ]; then | ... | ... |