mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
Fix broken CentOS tests; 'DistributionNotFound: jinja2'.
This commit is contained in:
parent
65071dd992
commit
c762892bb1
@ -3,17 +3,13 @@ FROM centos:6
|
|||||||
# Install Ansible
|
# Install Ansible
|
||||||
RUN yum -y update; yum clean all;
|
RUN yum -y update; yum clean all;
|
||||||
RUN yum -y install epel-release
|
RUN yum -y install epel-release
|
||||||
RUN yum -y install git python-setuptools gcc sudo libffi-devel python-devel openssl-devel
|
RUN yum -y install git ansible sudo
|
||||||
RUN yum clean all
|
RUN yum clean all
|
||||||
RUN easy_install pip
|
|
||||||
RUN pip install ansible
|
|
||||||
|
|
||||||
|
|
||||||
# Disable requiretty
|
# Disable requiretty
|
||||||
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
||||||
|
|
||||||
# Install Ansible inventory file
|
# Install Ansible inventory file
|
||||||
RUN mkdir - p /etc/ansible
|
|
||||||
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
||||||
|
|
||||||
CMD ["/usr/sbin/init"]
|
CMD ["/usr/sbin/init"]
|
||||||
|
@ -13,16 +13,14 @@ rm -f /lib/systemd/system/basic.target.wants/*; \
|
|||||||
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
||||||
|
|
||||||
# Install Ansible
|
# Install Ansible
|
||||||
RUN yum -y install git python-setuptools gcc sudo libffi-devel python-devel openssl-devel
|
RUN yum -y install epel-release
|
||||||
|
RUN yum -y install git ansible sudo
|
||||||
RUN yum clean all
|
RUN yum clean all
|
||||||
RUN easy_install pip
|
|
||||||
RUN pip install ansible
|
|
||||||
|
|
||||||
# Disable requiretty
|
# Disable requiretty
|
||||||
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
||||||
|
|
||||||
# Install Ansible inventory file
|
# Install Ansible inventory file
|
||||||
RUN mkdir - p /etc/ansible
|
|
||||||
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
||||||
|
|
||||||
VOLUME ["/sys/fs/cgroup"]
|
VOLUME ["/sys/fs/cgroup"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user