mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
Fix support of IOS images outside standard directories
Fix https://github.com/GNS3/gns3-gui/issues/1630
This commit is contained in:
parent
5dee4eb052
commit
ea94731418
@ -420,7 +420,7 @@ class BaseManager:
|
|||||||
raise ImageMissingError(orig_path)
|
raise ImageMissingError(orig_path)
|
||||||
|
|
||||||
# For non local server we disallow using absolute path outside image directory
|
# For non local server we disallow using absolute path outside image directory
|
||||||
if server_config.get("local", False) is True:
|
if server_config.getboolean("local", False) is True:
|
||||||
path = force_unix_path(path)
|
path = force_unix_path(path)
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
return path
|
return path
|
||||||
|
Loading…
Reference in New Issue
Block a user