Commit 8fc018d8 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 2fc203a9
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
[template] [template]
filename = instance.cfg filename = instance.cfg
md5sum = 35445ac546f034dc338835e877e6b807 md5sum = 379ce7a19af1078f7aeb8ea3626ec190
[amari_lte.jinja2] [amari_lte.jinja2]
_update_hash_filename_ = amari/lte.jinja2 _update_hash_filename_ = amari/lte.jinja2
...@@ -36,7 +36,7 @@ md5sum = e27ebe0ff200a3e4492412f164ca9b73 ...@@ -36,7 +36,7 @@ md5sum = e27ebe0ff200a3e4492412f164ca9b73
[ru_lopcomm_libinstance.jinja2.cfg] [ru_lopcomm_libinstance.jinja2.cfg]
_update_hash_filename_ = ru/lopcomm/libinstance.jinja2.cfg _update_hash_filename_ = ru/lopcomm/libinstance.jinja2.cfg
md5sum = 0cd8f53b969eca651fcd2a79728e4d80 md5sum = 3dc4d261da52f871e9a9ff3904ebfea9
[ru_sunwave_libinstance.jinja2.cfg] [ru_sunwave_libinstance.jinja2.cfg]
_update_hash_filename_ = ru/sunwave/libinstance.jinja2.cfg _update_hash_filename_ = ru/sunwave/libinstance.jinja2.cfg
...@@ -60,7 +60,7 @@ md5sum = 059fa51fd30372e4382e1c143e718791 ...@@ -60,7 +60,7 @@ md5sum = 059fa51fd30372e4382e1c143e718791
[ru_lopcomm_config.jinja2.py] [ru_lopcomm_config.jinja2.py]
_update_hash_filename_ = ru/lopcomm/config.jinja2.py _update_hash_filename_ = ru/lopcomm/config.jinja2.py
md5sum = f117548e01a88c408c482d079ec4b018 md5sum = 5155589ccd459dd51acce56cce9fdc8c
[ru_lopcomm_software.jinja2.py] [ru_lopcomm_software.jinja2.py]
_update_hash_filename_ = ru/lopcomm/software.jinja2.py _update_hash_filename_ = ru/lopcomm/software.jinja2.py
...@@ -72,7 +72,7 @@ md5sum = e22257ef526b0acc10a8203daa41028b ...@@ -72,7 +72,7 @@ md5sum = e22257ef526b0acc10a8203daa41028b
[template-enb] [template-enb]
_update_hash_filename_ = instance-enb.jinja2.cfg _update_hash_filename_ = instance-enb.jinja2.cfg
md5sum = 70054f6abcea11ff71e46479d32ece56 md5sum = b4f4507e053e0bea38ba986b10f1428b
[template-gnb] [template-gnb]
_update_hash_filename_ = instance-gnb.jinja2.cfg _update_hash_filename_ = instance-gnb.jinja2.cfg
......
...@@ -8,7 +8,8 @@ if __name__ == '__main__': ...@@ -8,7 +8,8 @@ if __name__ == '__main__':
nc = LopcommNetconfClient(log_file="{{ log_file }}") nc = LopcommNetconfClient(log_file="{{ log_file }}")
while True: while True:
try: try:
nc.connect("{{ netaddr.IPAddress(slap_configuration.get('tap-ipv6-gateway', '')) }}", 830, "oranuser", "oranpassword") # XXX ::1 temp - kill
nc.connect("{{ netaddr.IPAddress(slap_configuration.get('XXXtap-ipv6-gateway', '::1')) }}", 830, "oranuser", "oranpassword")
nc.edit_config(["{{ ru_lopcomm_CreateProcessingEle_template }}", "{{ ru_lopcomm_cu_config_template }}"]) nc.edit_config(["{{ ru_lopcomm_CreateProcessingEle_template }}", "{{ ru_lopcomm_cu_config_template }}"])
break break
except Exception as e: except Exception as e:
......
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 to comment