Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
fb838841
authored
Oct 20, 2014
by
Bach Dániel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm: recreate interfaces from template in recovery operation
Closes
#314
parent
d3b23cb1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
circle/vm/operations.py
+16
-2
No files found.
circle/vm/operations.py
View file @
fb838841
...
...
@@ -1179,14 +1179,28 @@ class RecoverOperation(InstanceOperation):
except
Instance
.
InstanceDestroyedError
:
pass
def
_operation
(
self
):
def
_operation
(
self
,
user
,
activity
):
with
activity
.
sub_activity
(
'recover_instance'
,
readable_name
=
ugettext_noop
(
"recover instance"
)):
self
.
instance
.
destroyed_at
=
None
for
disk
in
self
.
instance
.
disks
.
all
():
disk
.
destroyed
=
None
disk
.
restore
()
disk
.
save
()
self
.
instance
.
destroyed_at
=
None
self
.
instance
.
status
=
'PENDING'
self
.
instance
.
save
()
try
:
self
.
instance
.
renew
(
parent_activity
=
activity
)
except
:
pass
if
self
.
instance
.
template
:
for
net
in
self
.
instance
.
template
.
interface_set
.
all
():
self
.
instance
.
add_interface
(
parent_activity
=
activity
,
user
=
user
,
vlan
=
net
.
vlan
)
@register_operation
class
ResourcesOperation
(
InstanceOperation
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment