Commit e2946a1e by Őry Máté

one: do not automatically delete any hosts

parent 9359d317
...@@ -223,7 +223,7 @@ firewall_settings = { ...@@ -223,7 +223,7 @@ firewall_settings = {
"dns_ttl": "300", "dns_ttl": "300",
} }
EMAIL_HOST='cronos.ik.bme.hu' EMAIL_HOST='152.66.243.92' # giccero ipv4
CLOUD_URL='https://cloud.ik.bme.hu/' CLOUD_URL='https://cloud.ik.bme.hu/'
try: try:
......
...@@ -32,8 +32,9 @@ class Job(HourlyJob): ...@@ -32,8 +32,9 @@ class Job(HourlyJob):
print "%s delete: %s" % (i.name, i.time_of_delete) print "%s delete: %s" % (i.name, i.time_of_delete)
delete = i.time_of_delete.replace(minute=0, second=0, microsecond=0) delete = i.time_of_delete.replace(minute=0, second=0, microsecond=0)
if i.time_of_delete < now: if i.time_of_delete < now:
msg = render_to_string('mails/notification-delete-now.txt', { 'user': i.owner, 'instance': i, 'url': url } ) # msg = render_to_string('mails/notification-delete-now.txt', { 'user': i.owner, 'instance': i, 'url': url } )
SendMailTask.delay(to=i.owner.email, subject='[IK Cloud] %s' % i.name, msg=msg) # SendMailTask.delay(to=i.owner.email, subject='[IK Cloud] %s' % i.name, msg=msg)
pass
else: else:
for t in d: for t in d:
if delete == d[t]: if delete == d[t]:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment