forked from theJaxon/unlocker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New files used in tests for 2.0.9 RC3
- Loading branch information
David Parsons
committed
Sep 27, 2017
1 parent
fcc21ab
commit e16c05c
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python | ||
from __future__ import print_function | ||
import sys | ||
import xml.etree.ElementTree as ET | ||
|
||
|
||
def main(): | ||
dom = ET.ElementTree(file='./samples/config.xml') | ||
|
||
vmsvcpath = './/plugins//vmsvc' | ||
sandboxpath = './/plugins//vmsvc//useVmxSandbox' | ||
|
||
vmsvc = ET.ElementTree.find(dom, vmsvcpath) | ||
sandbox = ET.ElementTree.find(dom, sandboxpath) | ||
|
||
if vmsvc is None: | ||
print('ESXi Config - config.xml is corrupt') | ||
return False | ||
else: | ||
if sandbox is None: | ||
sandbox = ET.Element('useVmxSandbox') | ||
sandbox.text = 'false' | ||
vmsvc.append(sandbox) | ||
|
||
sandbox = ET.ElementTree.find(dom, sandboxpath) | ||
if sys.argv[1] == 'off': | ||
sandbox.text = 'false' | ||
elif sys.argv[1] == 'on': | ||
sandbox.text = 'true' | ||
else: | ||
print('ESXi Config - Error no or incorrect paramter passed') | ||
return False | ||
|
||
dom.write('./samples/output.xml') | ||
return True | ||
|
||
|
||
if __name__ == '__main__': | ||
|
||
if len(sys.argv) == 1: | ||
sys.exit(1) | ||
if main(): | ||
sys.exit(0) | ||
else: | ||
sys.exit(1) |
Binary file not shown.