8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-02 07:52:23 +00:00

Renvoie le mode plain ou ssl pour webmanagement

This commit is contained in:
Gabriel Detraz 2018-07-10 00:44:22 +02:00 committed by grizzly
parent 396853db0e
commit 54326a35b9

View file

@ -296,6 +296,21 @@ class Switch(AclMixin, Machine):
def get_name(self):
return self.name or self.main_interface().domain.name
@cached_property
def rest_enabled(self):
return OptionalTopologie.get_cached_value('switchs_rest_management') or self.automatic_provision
@cached_property
def web_management_enabled(self):
sw_management = OptionalTopologie.get_cached_value('switchs_web_management')
sw_management_ssl = OptionalTopologie.get_cached_value('switchs_web_management_ssl')
if sw_management_ssl:
return "ssl"
elif sw_management:
return "plain"
else:
return self.automatic_provision
@cached_property
def ipv4(self):
"""Return the switch's management ipv4"""