mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Add path lookup directory for Qemu on OSX.
This commit is contained in:
parent
b88abb7c91
commit
e261263aab
@ -628,6 +628,8 @@ class Qemu(IModule):
|
|||||||
paths.append(os.path.join(os.environ["PROGRAMFILES(X86)"], "qemu"))
|
paths.append(os.path.join(os.environ["PROGRAMFILES(X86)"], "qemu"))
|
||||||
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
|
if "PROGRAMFILES" in os.environ and os.path.exists(os.environ["PROGRAMFILES"]):
|
||||||
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
|
paths.append(os.path.join(os.environ["PROGRAMFILES"], "qemu"))
|
||||||
|
elif sys.platform.startswith("darwin"):
|
||||||
|
paths.append(os.path.join(os.getcwd(), "../Resources/Qemu/bin/"))
|
||||||
for path in paths:
|
for path in paths:
|
||||||
try:
|
try:
|
||||||
for f in os.listdir(path):
|
for f in os.listdir(path):
|
||||||
|
@ -13,10 +13,10 @@ File: <input type="file" name="file" />
|
|||||||
</form>
|
</form>
|
||||||
{%if items%}
|
{%if items%}
|
||||||
<h3>Files on {{host}}</h3>
|
<h3>Files on {{host}}</h3>
|
||||||
<ul>
|
<ol>
|
||||||
{%for item in items%}
|
{%for item in items%}
|
||||||
<li>{{path}}/{{item}}</a></li>
|
<li>{{path}}/{{item}}</a></li>
|
||||||
{%end%}
|
{%end%}
|
||||||
{%end%}
|
{%end%}
|
||||||
</ul>
|
</ol>
|
||||||
</body>
|
</body>
|
Loading…
Reference in New Issue
Block a user