Skip to content

Commit ff7d5bc

Browse files
committed
update requirements
1 parent 885134a commit ff7d5bc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

molecule/aws/prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
gather_facts: false
55
tasks:
66
- name: Install python for Ansible
7-
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal python-zipstream)
7+
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal python-zipstream python-apt aptitude)
88
become: true
99
changed_when: false

molecule/default/prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
gather_facts: false
55
tasks:
66
- name: Install python for Ansible
7-
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
7+
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal python-apt aptitude)
88
become: true
99
changed_when: false

molecule/docker/Dockerfile.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM {{ item.registry.url }}/{{ item.image }}
66
FROM {{ item.image }}
77
{% endif %}
88

9-
RUN if [ $(command -v apt-get) ]; then apt-get update && apt-get install -y python sudo bash ca-certificates && apt-get clean; \
9+
RUN if [ $(command -v apt-get) ]; then apt-get update && apt-get install -y python sudo bash ca-certificates python-apt aptitude && apt-get clean; \
1010
elif [ $(command -v dnf) ]; then dnf makecache && dnf --assumeyes install python sudo python-devel python2-dnf bash && dnf clean all; \
1111
elif [ $(command -v yum) ]; then yum makecache fast && yum install -y python sudo yum-plugin-ovl bash && sed -i 's/plugins=0/plugins=1/g' /etc/yum.conf && yum clean all; \
1212
elif [ $(command -v zypper) ]; then zypper refresh && zypper install -y python sudo bash python-xml && zypper clean -a; \

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ansible==2.7.8
2-
molecule==2.20.0
1+
ansible==2.8.6
2+
molecule==2.22
33
python-vagrant==0.5.15
44
boto==2.49.0
5-
boto3==1.8.6
6-
docker==3.4.1
5+
boto3==1.10.2
6+
docker==4.1.0

0 commit comments

Comments
 (0)