Install fix, issue 375
parent
801a3eac36
commit
808a7bb733
|
@ -10,21 +10,23 @@ fi
|
||||||
version=$( lsb_release -r | grep -oP "[0-9]+" | head -1 )
|
version=$( lsb_release -r | grep -oP "[0-9]+" | head -1 )
|
||||||
if lsb_release -d | grep -q "Fedora"; then
|
if lsb_release -d | grep -q "Fedora"; then
|
||||||
Release=Fedora
|
Release=Fedora
|
||||||
dnf install -y python-devel m2crypto python-m2ext swig python-iptools python3-iptools
|
dnf install -y python-devel m2crypto python-m2ext swig python-iptools python3-iptools libssl-dev
|
||||||
pip install pycrypto
|
pip install pycrypto
|
||||||
pip install iptools
|
pip install iptools
|
||||||
pip install pydispatcher
|
pip install pydispatcher
|
||||||
pip install flask
|
pip install flask
|
||||||
|
pip install pyOpenSSL
|
||||||
elif lsb_release -d | grep -q "Kali"; then
|
elif lsb_release -d | grep -q "Kali"; then
|
||||||
Release=Kali
|
Release=Kali
|
||||||
apt-get install -y python-dev python-m2crypto swig python-pip
|
apt-get install -y python-dev python-m2crypto swig python-pip libssl-dev
|
||||||
pip install pycrypto
|
pip install pycrypto
|
||||||
pip install iptools
|
pip install iptools
|
||||||
pip install pydispatcher
|
pip install pydispatcher
|
||||||
pip install flask
|
pip install flask
|
||||||
|
pip install pyOpenSSL
|
||||||
elif lsb_release -d | grep -q "Ubuntu"; then
|
elif lsb_release -d | grep -q "Ubuntu"; then
|
||||||
Release=Ubuntu
|
Release=Ubuntu
|
||||||
apt-get install -y python-dev python-m2crypto swig python-pip
|
apt-get install -y python-dev python-m2crypto swig python-pip libssl-dev
|
||||||
pip install pycrypto
|
pip install pycrypto
|
||||||
pip install iptools
|
pip install iptools
|
||||||
pip install pydispatcher
|
pip install pydispatcher
|
||||||
|
@ -32,11 +34,12 @@ elif lsb_release -d | grep -q "Ubuntu"; then
|
||||||
pip install pyOpenSSL
|
pip install pyOpenSSL
|
||||||
else
|
else
|
||||||
echo "Unknown distro - Debian/Ubuntu Fallback"
|
echo "Unknown distro - Debian/Ubuntu Fallback"
|
||||||
apt-get install -y python-dev python-m2crypto swig python-pip
|
apt-get install -y python-dev python-m2crypto swig python-pip libssl-dev
|
||||||
pip install pycrypto
|
pip install pycrypto
|
||||||
pip install iptools
|
pip install iptools
|
||||||
pip install pydispatcher
|
pip install pydispatcher
|
||||||
pip install flask
|
pip install flask
|
||||||
|
pip install pyOpenSSL
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# set up the database schema
|
# set up the database schema
|
||||||
|
|
Loading…
Reference in New Issue