-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ansible version problem #1245
Comments
I think we need to require an Ansible version now too. Seems trivial if the information on the following page is still valid. |
Are you running the I ask because I tried to run the |
I just tried with |
I'm having the exact same issue. $ ansible --version
ansible 2.8.3
config file = /Users/don/Desktop/github/claw-playbook/ansible.cfg
configured module search path = ['/Users/don/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/Cellar/ansible/2.8.3/libexec/lib/python3.7/site-packages/ansible
executable location = /usr/local/bin/ansible
python version = 3.7.4 (default, Jul 9 2019, 18:13:23) [Clang 10.0.1 (clang-1001.0.46.4)]
$ vagrant --version
Vagrant 2.2.5
$ vboxmanage --version
6.0.10r132072 I'm not sure if this is a "me" issue or not but this is what I'm seeing. I'm running on osx This is what localhost looks like for me. |
You need to use another ansible version diff --git a/docker/ansible/Dockerfile b/docker/ansible/Dockerfile
index 1ab5c73..281a536 100644
--- a/docker/ansible/Dockerfile
+++ b/docker/ansible/Dockerfile
@@ -6,7 +6,9 @@ ENV ISLANDORA_DISTRO="centos/7" \
WORKDIR /root/playbook
RUN yum -y install epel-release && \
- yum -y install git ansible openssh-clients
+ yum -y install git openssh-clients && \
+ yum -y install python-pip python-dev && \
+ pip install ansible==2.7.10
COPY entrypoint.sh /bin/
PS: I'm using Islandora-Devops/islandora-playbook#127 |
I cloned the claw git repository first and then installed ansible using these following commands
but I got the error while doing vagrant up. It was related to ansible compilation error of import_module problem.
The
ansible version is 2.3.0
vagrant version 2.0.4
virtualbox version 5.2.18
Therefore, I tried to install the 2.8 version of ansible using the following commands
After updating ansible version I could solve that problem and installed claw successfully.
The text was updated successfully, but these errors were encountered: