mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Append newline to network config
This commit is contained in:
parent
6926977a30
commit
d11989f976
1 changed files with 1 additions and 1 deletions
|
@ -35,4 +35,4 @@ class ConfigureNetworkIF(Task):
|
||||||
import json
|
import json
|
||||||
if_config = json.loads(stream.read())
|
if_config = json.loads(stream.read())
|
||||||
with open(interfaces_path, 'a') as interfaces:
|
with open(interfaces_path, 'a') as interfaces:
|
||||||
interfaces.write('\n'.join(if_config.get(info.manifest.system['release'])))
|
interfaces.write('\n'.join(if_config.get(info.manifest.system['release'])) + '\n')
|
||||||
|
|
Loading…
Add table
Reference in a new issue