From 2154f55e8b036e163f0530932fad6255c746f218 Mon Sep 17 00:00:00 2001 From: catborise Date: Wed, 9 Mar 2022 13:53:50 +0300 Subject: [PATCH 1/2] fix yes/no question confilict --- webvirtcloud.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webvirtcloud.sh b/webvirtcloud.sh index 41d13a2..27f56ed 100644 --- a/webvirtcloud.sh +++ b/webvirtcloud.sh @@ -382,7 +382,7 @@ until [[ $setupfqdn == "yes" ]] || [[ $setupfqdn == "no" ]]; do esac done -echo -n " Q. Do you want to change NOVNC service port number?(Default: 6080) " +echo -n " Q. NOVNC service port number?(Default: 6080) " read -r novncd_port if [ -z "$novncd_port" ]; then readonly novncd_port=6080 @@ -390,7 +390,7 @@ fi echo " Setting novnc service port $novncd_port" echo "" -echo -n " Q. Do you want to change NOVNC public port number for reverse proxy(e.g: 80 or 443)?(Default: 6080) " +echo -n " Q. NOVNC public port number for reverse proxy(e.g: 80 or 443)?(Default: 6080) " read -r novncd_public_port if [ -z "$novncd_public_port" ]; then readonly novncd_public_port=6080 @@ -398,7 +398,7 @@ fi echo " Setting novnc public port $novncd_public_port" echo "" -echo -n " Q. Do you want to change NOVNC host listen ip?(Default: 0.0.0.0) " +echo -n " Q. NOVNC host listen ip?(Default: 0.0.0.0) " read -r novncd_host if [ -z "$novncd_host" ]; then readonly novncd_host="0.0.0.0" From 2877f7b120ec54984567245ad95898ec850786db Mon Sep 17 00:00:00 2001 From: catborise Date: Mon, 25 Apr 2022 08:08:55 +0300 Subject: [PATCH 2/2] update requirements --- conf/requirements.txt | 6 +++--- dev/requirements.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conf/requirements.txt b/conf/requirements.txt index cc91551..7826c40 100644 --- a/conf/requirements.txt +++ b/conf/requirements.txt @@ -1,4 +1,4 @@ -Django==3.2.12 +Django==3.2.13 django_bootstrap5==21.2 django-icons==21.1 django-login-required-middleware==0.7 @@ -6,8 +6,8 @@ django-otp==1.1.3 django-qr-code==2.3.0 gunicorn==20.1.0 libsass==0.21.0 -libvirt-python==8.0.0 -lxml==4.7.1 +libvirt-python==8.2.0 +lxml==4.8.0 qrcode==7.3.1 rwlock==0.0.7 websockify==0.10.0 diff --git a/dev/requirements.txt b/dev/requirements.txt index 0ef2795..cc28827 100644 --- a/dev/requirements.txt +++ b/dev/requirements.txt @@ -3,5 +3,5 @@ coverage==6.2 django-debug-toolbar==3.2.4 pycodestyle==2.8.0 pyflakes==2.4.0 -pylint==2.12.2 +pylint==2.13.7 yapf==0.32.0