This commit is contained in:
root 2024-01-26 03:31:56 +02:00
parent e8f75f22e4
commit 301eb3ad44
2 changed files with 12 additions and 1 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
dynamips/
gns3-gui/
gns3-server/
ubridge/
vpcs/

View File

@ -1,6 +1,12 @@
all: all:
echo OK echo OK
check-deps-path:
which setcap
which usermod
install: install-gns3
install-docker: install-docker:
bash install-docker.sh bash install-docker.sh
@ -12,7 +18,7 @@ install-gns3-deps:
apt install -y python3-pyqt5.QtSvg python3-pyqt5.qtwebsockets apt install -y python3-pyqt5.QtSvg python3-pyqt5.qtwebsockets
DEBIAN_FRONTEND=noninteractive apt install -y bash-completion libguestfs-tools bsd-mailx DEBIAN_FRONTEND=noninteractive apt install -y bash-completion libguestfs-tools bsd-mailx
install-gns3: install-gns3-deps install-busybox-static install-pip install-docker create-gns3-user install-gns3: install-gns3-deps check-deps-path install-busybox-static install-pip install-docker create-gns3-user
git clone --depth 1 https://github.com/GNS3/gns3-server.git; true git clone --depth 1 https://github.com/GNS3/gns3-server.git; true
git clone --depth 1 https://github.com/GNS3/gns3-gui.git; true git clone --depth 1 https://github.com/GNS3/gns3-gui.git; true
git clone --depth 1 https://github.com/GNS3/vpcs.git; true git clone --depth 1 https://github.com/GNS3/vpcs.git; true