mirror of
https://github.com/retspen/webvirtcloud
synced 2025-01-27 23:55:19 +00:00
Compare commits
5 commits
43fc419490
...
cea2309c64
Author | SHA1 | Date | |
---|---|---|---|
|
cea2309c64 | ||
|
35afff26f4 | ||
|
53d1407483 | ||
|
4a4a998d4c | ||
|
635101a1b6 |
2 changed files with 4 additions and 2 deletions
|
@ -631,6 +631,7 @@ install_ubuntu_post() {
|
|||
sed -i 's/#listen_tls/listen_tls/g' /etc/libvirt/libvirtd.conf
|
||||
sed -i 's/#listen_tcp/listen_tcp/g' /etc/libvirt/libvirtd.conf
|
||||
sed -i 's/#auth_tcp/auth_tcp/g' /etc/libvirt/libvirtd.conf
|
||||
sed -i 's/#auth_unix_rw = "polkit"/auth_unix_rw = "none"/g' /etc/libvirt/libvirtd.conf
|
||||
else
|
||||
echoerror "/etc/libvirt/libvirtd.conf not found. Exiting..."
|
||||
exit 1
|
||||
|
@ -710,6 +711,7 @@ install_debian_post() {
|
|||
sed -i 's/#listen_tls/listen_tls/g' /etc/libvirt/libvirtd.conf
|
||||
sed -i 's/#listen_tcp/listen_tcp/g' /etc/libvirt/libvirtd.conf
|
||||
sed -i 's/#auth_tcp/auth_tcp/g' /etc/libvirt/libvirtd.conf
|
||||
sed -i 's/#auth_unix_rw = "polkit"/auth_unix_rw = "none"/g' /etc/libvirt/libvirtd.conf
|
||||
else
|
||||
echoerror "/etc/libvirt/libvirtd.conf not found. Exiting..."
|
||||
exit 1
|
||||
|
|
|
@ -160,7 +160,7 @@
|
|||
</div> <!-- /.modal-content -->
|
||||
</div> <!-- /.modal-dialog -->
|
||||
</div> <!-- /.modal -->
|
||||
{% ifnotequal volume.type "iso" %}
|
||||
{% if volume.type != "iso" %}
|
||||
<button class="btn btn-sm btn-secondary" data-bs-toggle="modal" data-bs-target="#Clone{{ forloop.counter }}" title="{% trans "Clone" %}">
|
||||
{% bs_icon 'files' %}
|
||||
</button>
|
||||
|
@ -168,7 +168,7 @@
|
|||
<button class="btn btn-sm btn-secondary disabled">
|
||||
{% bs_icon 'files' %}
|
||||
</button>
|
||||
{% endifnotequal %}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
<form action="" method="post" role="form" aria-label="Delete volume form">{% csrf_token %}
|
||||
|
|
Loading…
Reference in a new issue