Przeglądaj źródła

New config to template (jinja) c2r.py

master
Dirk Alders 9 miesięcy temu
rodzic
commit
938b407513
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4
    4
      bin/c2r.py

+ 4
- 4
bin/c2r.py Wyświetl plik

17
     print("Unable to open", '"' + src_file + '"')
17
     print("Unable to open", '"' + src_file + '"')
18
     sys.exit(18)
18
     sys.exit(18)
19
 
19
 
20
-n = re.sub('^.*server: .*', '  server: mqtt://<mqtt_smarthome_hostname>', s, flags=re.MULTILINE)
21
-n = re.sub('^.*user: .*', '  user: <mqtt_smarthome_username>', n, flags=re.MULTILINE)
22
-n = re.sub('^.*password: .*', '  password: <mqtt_smarthome_password>', n, flags=re.MULTILINE)
23
-n = re.sub('^.*auth_token: .*', '  auth_token: <zigbee_auth_token>', n, flags=re.MULTILINE)
20
+n = re.sub('^.*server: .*', '  server: mqtt://{{ smart_sat_zigbee2mqtt_hostname }}', s, flags=re.MULTILINE)
21
+n = re.sub('^.*user: .*', '  user: {{ smart_sat_zigbee2mqtt_username }}', n, flags=re.MULTILINE)
22
+n = re.sub('^.*password: .*', '  password: {{ smart_sat_zigbee2mqtt_password  }}', n, flags=re.MULTILINE)
23
+n = re.sub('^.*auth_token: .*', '  auth_token: {{ smart_sat_zigbee2mqtt_auth_token }}', n, flags=re.MULTILINE)
24
 
24
 
25
 try:
25
 try:
26
     with open(dst_file, 'w') as fh:
26
     with open(dst_file, 'w') as fh:

Ładowanie…
Anuluj
Zapisz