== should be =, bash...
This commit is contained in:
@@ -4,7 +4,7 @@ OPTIK_VER=1.4.1
|
|||||||
|
|
||||||
# Do we have the dns modules??
|
# Do we have the dns modules??
|
||||||
./check_modules.py dns
|
./check_modules.py dns
|
||||||
if [ "$?" == "1" ]; then
|
if [ "$?" = "1" ]; then
|
||||||
DNSPYTHON=dnspython-$DNSPYTHON_VER
|
DNSPYTHON=dnspython-$DNSPYTHON_VER
|
||||||
tar zxf $DNSPYTHON.tar.gz
|
tar zxf $DNSPYTHON.tar.gz
|
||||||
cd $DNSPYTHON
|
cd $DNSPYTHON
|
||||||
@@ -13,7 +13,7 @@ if [ "$?" == "1" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
./check_modules.py optparse
|
./check_modules.py optparse
|
||||||
if [ "$?" == "1" ]; then
|
if [ "$?" = "1" ]; then
|
||||||
OPTIK=dnspython-$OPTIK_VER
|
OPTIK=dnspython-$OPTIK_VER
|
||||||
tar zxf $OPTIK.tar.gz
|
tar zxf $OPTIK.tar.gz
|
||||||
cd $OPTIK
|
cd $OPTIK
|
||||||
|
|||||||
Reference in New Issue
Block a user