A package for ansible and its depends #53
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "lee.miller/openwrt:python"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi!
Here are the packages for
ansible-core
and it's dependencies, I discovered.It mostly seems to work but I'm getting this error which I didn't get when I installed it from pip. I did
pip install ansible
and notpip install ansible-core
, but I think ansible-core is a better choice, assuming we can get it working.Here https://github.com/ansible-community/molecule/issues/2444 they suggest to set a
fact_caching_connection
variable in the ansible config.I did further tests. Even if I override the config to change the cache to yaml and set a the
fact_caching_connection
to a path, it still prints the same error. Runningstrace
brings up this:For some reason it wants the source even though the compiled file is available. When I manually download the
.py
files it's looking for (from the ansible git repo) and place them in the corresponding directories, it gradually moves on. After I downloadmemory.py
, then it complains about the inventory. When I download an inventory plugin, then it complains about the stdout callback. If I upgrade ansible-core with pip, it deploys the.py
files instead of the.pyc
files, and ansible works. I'm not fully sure why this is happening, but maybe if the packaging is updated to include the sources, that would fix it.68693fb117
to4604c6054a
There is a
python3-ansible-core-src
package. I added it toPACKAGES
. Maybe this helps.ok I'll test.
Of course they have broken also resolvelib:
So far I cannot found a solution for this. There is no
host-pip-requirements
dir in the container.4604c6054a
to86890bf436
Is it this one that fixed it?
6a390b09c3
Let me test.
I updated
resolvelib
Makefile:86890bf436
A package for ansible and it's dependsto A package for ansible and its dependsWhat I meant was that previously
host-pip-requirements
was missing but in the upstream commit I posted they added it again.Anyway I tested it and ansible now works, so I'm merging.