mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-10 08:46:11 -04:00
Use yaml.safe_*
This commit is contained in:
committed by
Hans-Christoph Steiner
parent
cb2c3a34bb
commit
b4f8ab289d
@@ -416,7 +416,7 @@ def main():
|
||||
logging.info('Halting %s', serverdir)
|
||||
v.halt()
|
||||
with open(vf, 'r', encoding='utf-8') as f:
|
||||
oldconfig = yaml.load(f)
|
||||
oldconfig = yaml.safe_load(f)
|
||||
if config != oldconfig:
|
||||
logging.info("Server configuration has changed, rebuild from scratch is required")
|
||||
vm.destroy()
|
||||
@@ -427,7 +427,7 @@ def main():
|
||||
logging.info("No existing server - building from scratch")
|
||||
if writevf:
|
||||
with open(vf, 'w', encoding='utf-8') as f:
|
||||
yaml.dump(config, f)
|
||||
yaml.safe_dump(config, f)
|
||||
|
||||
# Check if selected provider is supported
|
||||
if config['vm_provider'] not in ['libvirt', 'virtualbox']:
|
||||
|
||||
Reference in New Issue
Block a user