2020-01-14 10:05:42 +00:00
|
|
|
import argparse
|
|
|
|
|
2020-01-14 10:22:04 +00:00
|
|
|
from uncloud.hack.vm import VM
|
2020-01-14 13:23:26 +00:00
|
|
|
from uncloud.hack.config import Config
|
2020-01-14 18:02:15 +00:00
|
|
|
from uncloud.hack.mac import MAC
|
2020-01-14 10:22:04 +00:00
|
|
|
|
2020-01-14 10:05:42 +00:00
|
|
|
arg_parser = argparse.ArgumentParser('hack', add_help=False)
|
2020-01-14 10:25:06 +00:00
|
|
|
#description="Commands that are unfinished - use at own risk")
|
2020-01-14 10:22:04 +00:00
|
|
|
arg_parser.add_argument('--create-vm', action='store_true')
|
2020-01-14 18:02:15 +00:00
|
|
|
arg_parser.add_argument('--last-used-mac', action='store_true')
|
|
|
|
arg_parser.add_argument('--get-new-mac', action='store_true')
|
2020-01-14 10:05:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main(arguments):
|
2020-01-14 10:09:45 +00:00
|
|
|
print(arguments)
|
2020-01-14 13:23:26 +00:00
|
|
|
config = Config(arguments)
|
|
|
|
|
2020-01-14 10:22:04 +00:00
|
|
|
if arguments['create_vm']:
|
|
|
|
print("Creating VM")
|
2020-01-14 13:23:26 +00:00
|
|
|
vm = VM(config)
|
2020-01-14 10:22:04 +00:00
|
|
|
vm.create()
|
2020-01-14 18:02:15 +00:00
|
|
|
|
|
|
|
if arguments['last_used_mac']:
|
|
|
|
m = MAC(config)
|
|
|
|
print(m.last_used_mac())
|
|
|
|
|
|
|
|
if arguments['get_new_mac']:
|
2020-01-14 18:10:59 +00:00
|
|
|
print(MAC(config).get_next())
|