From 24a578f61b85f9e630fd2dd1d77b0314ef81f335 Mon Sep 17 00:00:00 2001 From: catborise Date: Fri, 29 May 2020 17:13:41 +0300 Subject: [PATCH] Remove some constants from settings.py --- webvirtcloud/settings.py.template | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template index d0d4023..9ab9667 100644 --- a/webvirtcloud/settings.py.template +++ b/webvirtcloud/settings.py.template @@ -151,12 +151,6 @@ WS_PUBLIC_HOST = None # Websock SSL connection WS_CERT = None -# List of console types -QEMU_CONSOLE_TYPES = ['vnc', 'spice'] - -# Default console type -QEMU_CONSOLE_DEFAULT_TYPE = 'vnc' - # List of console listen addresses QEMU_CONSOLE_LISTEN_ADDRESSES = ( ('127.0.0.1', 'Localhost'), @@ -173,11 +167,5 @@ QEMU_KEYMAPS = ['ar', 'da', 'de', 'de-ch', 'en-gb', 'en-us', 'es', 'et', 'fi', LIBVIRT_KEEPALIVE_INTERVAL = 5 LIBVIRT_KEEPALIVE_COUNT = 5 -ALLOW_INSTANCE_MULTIPLE_OWNER = True -ALLOW_EMPTY_PASSWORD = False NEW_USER_DEFAULT_INSTANCES = [] -CLONE_INSTANCE_DEFAULT_PREFIX = 'instance' -CLONE_INSTANCE_AUTO_NAME = False -CLONE_INSTANCE_AUTO_MIGRATE = False -LOGS_PER_PAGE = 100