mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
add log message to attaching disk
This commit is contained in:
parent
82c87f82bc
commit
1196fb38c9
1 changed files with 6 additions and 4 deletions
|
|
@ -482,6 +482,8 @@ def instance(request, compute_id, vname):
|
||||||
source = path + "/" + name;
|
source = path + "/" + name;
|
||||||
|
|
||||||
conn.attach_disk(source, target, subdriver=format, cache=cache, targetbus=bus)
|
conn.attach_disk(source, target, subdriver=format, cache=cache, targetbus=bus)
|
||||||
|
msg = _('Attach Existing disk')
|
||||||
|
addlogmsg(request.user.username, instance.name, msg)
|
||||||
return HttpResponseRedirect(request.get_full_path() + '#disks')
|
return HttpResponseRedirect(request.get_full_path() + '#disks')
|
||||||
|
|
||||||
if 'delvolume' in request.POST and (request.user.is_superuser or userinstance.is_change):
|
if 'delvolume' in request.POST and (request.user.is_superuser or userinstance.is_change):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue