Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
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
82073b6f
authored
Apr 10, 2013
by
Bach Dániel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
one: random fixes
fixes #117
parent
3f526ee4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
miscellaneous/celery/opennebula_celery.py
+2
-0
one/jobs/hourly/scheduled_vm_cleanup.py
+4
-2
one/models.py
+2
-0
No files found.
miscellaneous/celery/opennebula_celery.py
View file @
82073b6f
...
...
@@ -171,6 +171,8 @@ def update_state(one_id):
(
out
,
err
)
=
proc
.
communicate
()
state
=
'UNKNOWN'
try
:
if
(
len
(
sys
.
argv
)
==
3
and
sys
.
argv
[
2
]
==
'UNKNOWN'
):
raise
Exception
(
':('
)
from
xml.dom.minidom
import
parse
,
parseString
x
=
parseString
(
out
)
state
=
x
.
getElementsByTagName
(
"STATE"
)[
0
]
.
childNodes
[
0
]
.
nodeValue
...
...
one/jobs/hourly/scheduled_vm_cleanup.py
View file @
82073b6f
...
...
@@ -28,7 +28,8 @@ class Job(HourlyJob):
# print i+':'+unicode(d[i])
# delete
for
i
in
Instance
.
objects
.
filter
(
state__in
=
[
'ACTIVE'
,
'STOPPED'
],
time_of_delete__isnull
=
False
):
for
i
in
Instance
.
objects
.
filter
(
state__in
=
[
'ACTIVE'
,
'STOPPED'
],
time_of_delete__isnull
=
False
,
waiting
=
False
):
try
:
translation
.
activate
(
i
.
owner
.
person_set
.
get
()
.
language
)
except
:
...
...
@@ -47,7 +48,8 @@ class Job(HourlyJob):
SendMailTask
.
delay
(
to
=
i
.
owner
.
email
,
subject
=
'[IK Cloud]
%
s'
%
i
.
name
,
msg
=
msg
)
# suspend
for
i
in
Instance
.
objects
.
filter
(
state
=
'ACTIVE'
,
time_of_suspend__isnull
=
False
):
for
i
in
Instance
.
objects
.
filter
(
state
=
'ACTIVE'
,
time_of_suspend__isnull
=
False
,
waiting
=
False
):
try
:
translation
.
activate
(
i
.
owner
.
person_set
.
get
()
.
language
)
except
:
...
...
one/models.py
View file @
82073b6f
...
...
@@ -571,6 +571,8 @@ class Instance(models.Model):
if
self
.
template
.
state
!=
"DONE"
:
self
.
check_if_is_save_as_done
()
if
self
.
one_id
and
self
.
state
!=
'DONE'
:
self
.
waiting
=
True
self
.
save
()
from
.tasks
import
DeleteInstanceTask
DeleteInstanceTask
.
delay
(
one_id
=
self
.
one_id
)
self
.
firewall_host_delete
()
...
...
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