diff --git a/usr/bin/vmmgr b/usr/bin/vmmgr index 9a54f0a..ebb2f2d 100755 --- a/usr/bin/vmmgr +++ b/usr/bin/vmmgr @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import argparse -from vmmgr import Config, VMMgr +from vmmgr import Config, LXCMgr, VMMgr parser = argparse.ArgumentParser(description='VM application manager') subparsers = parser.add_subparsers() diff --git a/usr/lib/python3.6/vmmgr/paths.py b/usr/lib/python3.6/vmmgr/paths.py index 4911390..ad5f019 100644 --- a/usr/lib/python3.6/vmmgr/paths.py +++ b/usr/lib/python3.6/vmmgr/paths.py @@ -21,5 +21,5 @@ NGINX_DIR = '/etc/nginx/conf.d' REPO_FILE = '/etc/apk/repositories' # URLs -MYUP_URL = 'https://tools.dasm.cz/myip.php' +MYIP_URL = 'https://tools.dasm.cz/myip.php' PING_URL = 'https://tools.dasm.cz/vm-ping.php'