Rattrappage de l'erreur si l'apply conf marche pas
This commit is contained in:
parent
21b25f1cb2
commit
7d7c7f2f13
1 changed files with 4 additions and 6 deletions
10
main.py
10
main.py
|
@ -21,7 +21,6 @@ api_client = Re2oAPIClient(api_hostname, api_username, api_password)
|
|||
|
||||
client_hostname = socket.gethostname().split('.', 1)[0]
|
||||
|
||||
print("get switchs conf")
|
||||
all_switchs = api_client.list("switchs/ports-config/")
|
||||
|
||||
# Création de l'environnement Jinja
|
||||
|
@ -146,14 +145,13 @@ class Switch:
|
|||
with open("generated/" + self.get_conf_file_name(), 'w+') as f:
|
||||
f.write(self.conf)
|
||||
|
||||
print("gen tpl")
|
||||
|
||||
|
||||
sw = Switch()
|
||||
for switch in all_switchs:
|
||||
sw.switch = switch
|
||||
sw.gen_conf_and_write()
|
||||
sw.apply_conf()
|
||||
# sw.gen_conf_hp()
|
||||
# sw.write_conf()
|
||||
|
||||
try:
|
||||
sw.apply_conf()
|
||||
except:
|
||||
print("Erreur dans l'application de la conf pour " + switch["short_name"])
|
||||
|
|
Loading…
Reference in a new issue