mirror of https://github.com/EdgeVPNio/tools.git
Deployment fixes for python deps
parent
ff1553f61a
commit
6fee0a1f8b
|
@ -17,7 +17,7 @@ Version : $PkgVer
|
||||||
Maintainer: <ip.over.p2p@gmail.com>
|
Maintainer: <ip.over.p2p@gmail.com>
|
||||||
Architecture: $PkgArch
|
Architecture: $PkgArch
|
||||||
Homepage: http://edgevpn.io
|
Homepage: http://edgevpn.io
|
||||||
Depends: python3.8, python3.8-dev, python3.8-venv, python3-pip, iproute2, openvswitch-switch, bridge-utils
|
Depends: python3.8, python3.8-dev, python3.8-venv, python3-pip, python3-wheel, iproute2, openvswitch-switch, bridge-utils
|
||||||
Description: Virtualized Overlay Networks.
|
Description: Virtualized Overlay Networks.
|
||||||
EdgeVPN is an open-source user-centric software virtual network allowing end users to define and create their own virtual private networks (VPNs). EdgeVPNio virtual networks provide end-to-end tunneling of IP or Ethernet over Tincan links setup and managed through a control API to create various software-defined VPN overlays.
|
EdgeVPN is an open-source user-centric software virtual network allowing end users to define and create their own virtual private networks (VPNs). EdgeVPNio virtual networks provide end-to-end tunneling of IP or Ethernet over Tincan links setup and managed through a control API to create various software-defined VPN overlays.
|
||||||
Tag: P2P Edge Overlay Networking
|
Tag: P2P Edge Overlay Networking
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
cd /opt/edge-vpnio
|
cd /opt/edge-vpnio
|
||||||
python3.8 -m venv venv
|
python3.8 -m venv venv
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
pip3 --no-cache-dir install wheel psutil slixmpp requests simplejson ryu
|
pip3 --no-cache-dir install wheel
|
||||||
|
pip3 --no-cache-dir install psutil slixmpp requests simplejson ryu
|
||||||
deactivate
|
deactivate
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl enable evio
|
systemctl enable evio
|
|
@ -7,9 +7,10 @@ RUN apt-get update -y && apt-get install -y \
|
||||||
iputils-ping \
|
iputils-ping \
|
||||||
nano \
|
nano \
|
||||||
python3.8 \
|
python3.8 \
|
||||||
python3-dev \
|
python3.8-dev \
|
||||||
|
python3.8-venv \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
python3-venv \
|
python3-wheel \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
openvswitch-switch \
|
openvswitch-switch \
|
||||||
bridge-utils \
|
bridge-utils \
|
||||||
|
|
Loading…
Reference in New Issue