diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-03-22 03:33:05 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-03-22 03:33:05 -0400 |
commit | 78c99ef3faecde46b3e460dffa1af69654e8bbff (patch) | |
tree | a5fed4327d79c4f35677c6fc9ff602fd00ef114f /cloudinit/util.py | |
parent | 9e05dd2d21f3db77607f1e4aa53a4657514a4fce (diff) | |
download | vyos-cloud-init-78c99ef3faecde46b3e460dffa1af69654e8bbff.tar.gz vyos-cloud-init-78c99ef3faecde46b3e460dffa1af69654e8bbff.zip |
drop changes other than generate_fallback_config
Diffstat (limited to 'cloudinit/util.py')
-rw-r--r-- | cloudinit/util.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index 58ab3c75..20916e53 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -849,15 +849,6 @@ def read_seeded(base="", ext="", timeout=5, retries=10, file_retries=0): return (md, ud) -def disable_conf_file(conf): - # disable .cfg file by renaming it if it exists - if not os.path.exists(conf): - return None - target_path = conf + '.disabled' - rename(conf, target_path) - return target_path - - def read_conf_d(confd): # Get reverse sorted list (later trumps newer) confs = sorted(os.listdir(confd), reverse=True) |