When in context of a role, create backup dir within role_path

This commit is contained in:
chouseknecht 2016-02-04 13:01:00 -05:00
parent 4b7b3794c9
commit 0766219f58

View file

@ -55,29 +55,32 @@ class ActionModule(ActionBase):
return result
def _get_working_path(self):
cwd = self._loader.get_basedir()
if self._task._role is not None:
cwd = self._task._role._role_path
return cwd
def _write_backup(self, host, contents):
if not os.path.exists('backup'):
os.mkdir('backup')
for fn in glob.glob('backup/%s*' % host):
backup_path = self._get_working_path() + '/backup'
if not os.path.exists(backup_path):
os.mkdir(backup_path)
for fn in glob.glob('%s/%s*' % (backup_path, host)):
os.remove(fn)
tstamp = time.strftime("%Y-%m-%d@%H:%M:%S", time.localtime(time.time()))
filename = 'backup/%s_config.%s' % (host, tstamp)
filename = '%s/%s_config.%s' % (backup_path, host, tstamp)
open(filename, 'w').write(contents)
def _handle_template(self):
src = self._task.args.get('src')
working_path = self._get_working_path()
if os.path.isabs(src) or urlparse.urlsplit('src').scheme:
source = src
elif self._task._role is not None:
source = self._loader.path_dwim_relative(self._task._role._role_path, 'templates', src)
if not source:
source = self._loader.path_dwim_relative(self._task._role._role_path, src)
else:
source = self._loader.path_dwim_relative(self._loader.get_basedir(), 'templates', src)
source = self._loader.path_dwim_relative(working_path, 'templates', src)
if not source:
source = self._loader.path_dwim_relative(self._loader.get_basedir(), src)
source = self._loader.path_dwim_relative(working_path, src)
if not os.path.exists(source):
return