GNS3 / gns3-server

GNS3 server
GNU General Public License v3.0
812 stars 263 forks source link

2.2 : rename project with docker and symbolic link #2427

Closed Raizo62 closed 4 weeks ago

Raizo62 commented 1 month ago

Hi

No error if the symbolic link is created with the command

cd /link
ln -s /etc/os-release  os-release

But the file /link/os-release is no longer a symbolic link but a standard file

grossmj commented 1 month ago

I think the reason is because use the zipfile module in Python https://docs.python.org/3/library/zipfile.html which does not support symbolic links. I could try to implement an alternative.

grossmj commented 4 weeks ago

I have added support for symbolic links. It will work in v2.2.50 onward.

Please don't hesitate to comment back if you spot a problem related to this issue.

Raizo62 commented 3 weeks ago

This seems to work :-) Thanks :-)