update src/ansible_gentooimgr
This commit is contained in:
parent
87c247eef2
commit
cb32e7e66d
@ -1,6 +1,12 @@
|
||||
GentooImgr: Gentoo Image Builder for Cloud and Turnkey ISO installers
|
||||
=====================================================================
|
||||
|
||||
** This is a modified version of https://github.com/NucleaPeon/gentooimgr/
|
||||
where we've modified the code a little to do use Python logging. We can
|
||||
still use it for the build stage, but we think the install stahe is better
|
||||
done using ansible, hence the libvirt_cloud playbook.**
|
||||
|
||||
|
||||
GentooImgr is a python script system to build cloud images based on Gentoo Linux.
|
||||
|
||||
Huge thanks to https://github.com/travisghansen/gentoo-cloud-image-builder for providing a foundation to work from.
|
||||
|
@ -32,7 +32,6 @@
|
||||
"postfix",
|
||||
"parted",
|
||||
"portage-utils",
|
||||
"bash-completion",
|
||||
"gentoo-bashcomp",
|
||||
"tmux",
|
||||
"app-misc/screen",
|
||||
|
@ -12,16 +12,18 @@ import traceback
|
||||
|
||||
sys.path.append('/mnt/o/var/local/src/play_tox/src/ansible_gentooimgr')
|
||||
# in the library
|
||||
mod_path = os.path.dirname(os.path.realpath('__file__'))
|
||||
mod_path = os.path.join(mod_path, 'src', 'ansible_gentooimgr')
|
||||
assert os.path.isdir(mod_path), f"parent {mod_path}"
|
||||
assert os.path.isfile(os.path.join(mod_path, '__init__.py')),f"index {mod_path}"
|
||||
assert os.path.isdir(os.path.join(mod_path, 'gentooimgr')), f"sub {mod_path}"
|
||||
sys.path.append(mod_path)
|
||||
if os.environ.get('TESTF_ANSIBLE_SRC',''):
|
||||
# running from source
|
||||
mod_path = os.environ.get('TESTF_ANSIBLE_SRC','')
|
||||
mod_path = os.path.join(mod_path, 'src', 'ansible_gentooimgr')
|
||||
assert os.path.isdir(mod_path), f"parent {mod_path}"
|
||||
assert os.path.isfile(os.path.join(mod_path, '__init__.py')),f"index {mod_path}"
|
||||
assert os.path.isdir(os.path.join(mod_path, 'gentooimgr')), f"sub {mod_path}"
|
||||
sys.path.append(mod_path)
|
||||
try:
|
||||
import gentooimgr
|
||||
except Exception as e:
|
||||
sys.stderr.write(f"{mod_path} {sys.path} {traceback.print_exc()}")
|
||||
sys.stderr.write(f"{e} {sys.path} {traceback.print_exc()}")
|
||||
raise
|
||||
import ansible
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user