rename function to reveal new task: create_files_dirs
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
1e264afa63
commit
cbe95b18e6
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2010-2011 Nico Schottelius (nico-cdist at schottelius.org)
|
||||
# 2010-2012 Nico Schottelius (nico-cdist at schottelius.org)
|
||||
#
|
||||
# This file is part of cdist.
|
||||
#
|
||||
|
@ -48,7 +48,7 @@ class ConfigInstall(object):
|
|||
self.remote = context.remote
|
||||
|
||||
# Initialise local directory structure
|
||||
self.local.create_directories()
|
||||
self.local.create_files_dirs()
|
||||
# Initialise remote directory structure
|
||||
self.remote.create_directories()
|
||||
|
||||
|
|
|
@ -142,7 +142,7 @@ class Local(object):
|
|||
|
||||
return self.run(command, env, return_output)
|
||||
|
||||
def create_context_files_dirs(self):
|
||||
def create_files_dirs(self):
|
||||
self._create_context_dirs()
|
||||
self._create_conf_path_and_link_conf_dirs()
|
||||
|
||||
|
|
Loading…
Reference in a new issue