New config to template (jinja) c2r.py
This commit is contained in:
parent
0739394101
commit
938b407513
@ -17,10 +17,10 @@ except (PermissionError, FileNotFoundError) as e:
|
||||
print("Unable to open", '"' + src_file + '"')
|
||||
sys.exit(18)
|
||||
|
||||
n = re.sub('^.*server: .*', ' server: mqtt://<mqtt_smarthome_hostname>', s, flags=re.MULTILINE)
|
||||
n = re.sub('^.*user: .*', ' user: <mqtt_smarthome_username>', n, flags=re.MULTILINE)
|
||||
n = re.sub('^.*password: .*', ' password: <mqtt_smarthome_password>', n, flags=re.MULTILINE)
|
||||
n = re.sub('^.*auth_token: .*', ' auth_token: <zigbee_auth_token>', n, flags=re.MULTILINE)
|
||||
n = re.sub('^.*server: .*', ' server: mqtt://{{ smart_sat_zigbee2mqtt_hostname }}', s, flags=re.MULTILINE)
|
||||
n = re.sub('^.*user: .*', ' user: {{ smart_sat_zigbee2mqtt_username }}', n, flags=re.MULTILINE)
|
||||
n = re.sub('^.*password: .*', ' password: {{ smart_sat_zigbee2mqtt_password }}', n, flags=re.MULTILINE)
|
||||
n = re.sub('^.*auth_token: .*', ' auth_token: {{ smart_sat_zigbee2mqtt_auth_token }}', n, flags=re.MULTILINE)
|
||||
|
||||
try:
|
||||
with open(dst_file, 'w') as fh:
|
||||
|
Loading…
x
Reference in New Issue
Block a user