mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
fix minor issue on lsb_release
This commit is contained in:
parent
3916acf665
commit
2aad7f3c59
1 changed files with 2 additions and 2 deletions
|
@ -65,8 +65,8 @@ If you think you received this message in error, you can post an issue on the Gi
|
||||||
}
|
}
|
||||||
|
|
||||||
if hash lsb_release 2>/dev/null; then
|
if hash lsb_release 2>/dev/null; then
|
||||||
PLAT=$($LSB_REL -si)
|
PLAT=$(lsb_release -si)
|
||||||
OSCN=$($LSB_REL -sc) # We want this to be trusty xenial or jessie
|
OSCN=$(lsb_release -sc) # We want this to be trusty xenial or jessie
|
||||||
|
|
||||||
if [[ $PLAT == "Ubuntu" || $PLAT == "Raspbian" || $PLAT == "Debian" ]]; then
|
if [[ $PLAT == "Ubuntu" || $PLAT == "Raspbian" || $PLAT == "Debian" ]]; then
|
||||||
if [[ $OSCN != "trusty" && $OSCN != "xenial" && $OSCN != "jessie" ]]; then
|
if [[ $OSCN != "trusty" && $OSCN != "xenial" && $OSCN != "jessie" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue