pmbootstrap/pmb/config/save.py

12 lines
299 B
Python
Raw Normal View History

2022-01-02 21:38:21 +00:00
# Copyright 2022 Oliver Smith
# SPDX-License-Identifier: GPL-3.0-or-later
2017-05-26 20:08:45 +00:00
import os
import logging
def save(args, cfg):
logging.debug("Save config: " + args.config)
2017-05-26 20:08:45 +00:00
os.makedirs(os.path.dirname(args.config), 0o700, True)
with open(args.config, "w") as handle:
cfg.write(handle)