diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-11 17:12:29 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-11 17:12:29 -0700 |
commit | a987baa675c19c8c2064c7eee786e93468a9c8ec (patch) | |
tree | 97e685dab9422997d1bf6d999b62a5ceca2f6cd4 /cloudinit | |
parent | cad4b0c217427f5497cc32fe9e19bd3e5071a131 (diff) | |
download | vyos-cloud-init-a987baa675c19c8c2064c7eee786e93468a9c8ec.tar.gz vyos-cloud-init-a987baa675c19c8c2064c7eee786e93468a9c8ec.zip |
Moved these functions to utils.
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/__init__.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cloudinit/__init__.py b/cloudinit/__init__.py index ab0603e0..da124641 100644 --- a/cloudinit/__init__.py +++ b/cloudinit/__init__.py @@ -19,17 +19,3 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. - -from cloudinit import util - -from cloudinit.settings import (CFG_BUILTIN, CLOUD_CONFIG) - - -def get_base_cfg(cfg_path=None): - if not cfg_path: - cfg_path = CLOUD_CONFIG - return util.get_base_cfg(cfg_path, get_builtin_cfg()) - - -def get_builtin_cfg(): - return dict(CFG_BUILTIN) |