mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
update requirement and fix install script
This commit is contained in:
parent
cedb7beedd
commit
cbd1f6f8b0
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
Django==4.2.4
|
Django==4.2.5
|
||||||
django_bootstrap5==23.3
|
django_bootstrap5==23.3
|
||||||
django-bootstrap-icons==0.8.3
|
django-bootstrap-icons==0.8.3
|
||||||
django-login-required-middleware==0.9.0
|
django-login-required-middleware==0.9.0
|
||||||
|
@ -6,15 +6,15 @@ django-otp==1.2.2
|
||||||
django-qr-code==3.1.1
|
django-qr-code==3.1.1
|
||||||
gunicorn==21.2.0
|
gunicorn==21.2.0
|
||||||
libsass==0.22.0
|
libsass==0.22.0
|
||||||
libvirt-python==9.6.0
|
libvirt-python==9.7.0
|
||||||
lxml==4.9.3
|
lxml==4.9.3
|
||||||
qrcode==7.4.2
|
qrcode==7.4.2
|
||||||
rwlock==0.0.7
|
rwlock==0.0.7
|
||||||
websockify==0.10.0
|
websockify==0.11.0
|
||||||
zipp==3.16.2
|
zipp==3.16.2
|
||||||
ldap3==2.9.1
|
ldap3==2.9.1
|
||||||
python-engineio==4.5.1
|
python-engineio==4.7.0
|
||||||
python-socketio==5.8.0
|
python-socketio==5.9.0
|
||||||
eventlet==0.33.3
|
eventlet==0.33.3
|
||||||
djangorestframework==3.14.0
|
djangorestframework==3.14.0
|
||||||
drf-nested-routers==0.93.4
|
drf-nested-routers==0.93.4
|
||||||
|
|
|
@ -680,7 +680,7 @@ install_debian() {
|
||||||
apt-get update || return 1
|
apt-get update || return 1
|
||||||
if [ "$DISTRO_MAJOR_VERSION" -lt 10 ]; then
|
if [ "$DISTRO_MAJOR_VERSION" -lt 10 ]; then
|
||||||
apt-get -y install qemu-kvm libvirt-bin bridge-utils sasl2-bin python-guestfs supervisor || return 1
|
apt-get -y install qemu-kvm libvirt-bin bridge-utils sasl2-bin python-guestfs supervisor || return 1
|
||||||
else [ "$DISTRO_MAJOR_VERSION" -lt 12 ]; then
|
elif [ "$DISTRO_MAJOR_VERSION" -lt 12 ]; then
|
||||||
apt-get -y install qemu qemu-kvm qemu-system qemu-utils libvirt-clients libvirt-daemon-system sasl2-bin python3-guestfs virtinst supervisor || return 1
|
apt-get -y install qemu qemu-kvm qemu-system qemu-utils libvirt-clients libvirt-daemon-system sasl2-bin python3-guestfs virtinst supervisor || return 1
|
||||||
else
|
else
|
||||||
apt-get -y install qemu-system qemu-utils libvirt-clients libvirt-daemon-system sasl2-bin python3-guestfs virtinst supervisor || return 1
|
apt-get -y install qemu-system qemu-utils libvirt-clients libvirt-daemon-system sasl2-bin python3-guestfs virtinst supervisor || return 1
|
||||||
|
|
Loading…
Reference in a new issue