-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from johanmeiring/remove-older-os-support
Remove older OS support
- Loading branch information
Showing
14 changed files
with
92 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
tests/Dockerfile.centos-7.ansible-2.2.2.0 → tests/Dockerfile.centos-7.ansible-2.5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
FROM centos:7 | ||
#RUN yum update | ||
RUN yum -y update | ||
|
||
# Install OpenSSH server | ||
RUN yum install -y openssh-server epel-release libffi-devel gcc | ||
|
||
# Install Ansible | ||
RUN yum install -y python-pip python-devel openssl-devel | ||
RUN yum install -y python3-pip python3-devel openssl-devel | ||
#software-properties-common git python-dev libffi-dev libssl-dev | ||
RUN pip install -U setuptools | ||
RUN pip install 'ansible==2.2.2.0' | ||
RUN pip3 install -U setuptools | ||
RUN pip3 install 'ansible~=2.5.0' | ||
RUN alternatives --install /usr/bin/python python /usr/bin/python3 60 | ||
|
||
# Install Ansible inventory file | ||
RUN mkdir /etc/ansible/ && echo "localhost ansible_connection=local" > /etc/ansible/hosts |
9 changes: 5 additions & 4 deletions
9
tests/Dockerfile.centos-7.ansible-2.3.0.0 → tests/Dockerfile.centos-7.ansible-2.9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
FROM centos:7 | ||
#RUN yum update | ||
RUN yum -y update | ||
|
||
# Install OpenSSH server | ||
RUN yum install -y openssh-server epel-release libffi-devel gcc | ||
|
||
# Install Ansible | ||
RUN yum install -y python-pip python-devel openssl-devel | ||
RUN yum install -y python3-pip python3-devel openssl-devel | ||
#software-properties-common git python-dev libffi-dev libssl-dev | ||
RUN pip install -U setuptools | ||
RUN pip install 'ansible==2.3.0.0' | ||
RUN pip3 install -U setuptools | ||
RUN pip3 install 'ansible~=2.9.0' | ||
RUN alternatives --install /usr/bin/python python /usr/bin/python3 60 | ||
|
||
# Install Ansible inventory file | ||
RUN mkdir /etc/ansible/ && echo "localhost ansible_connection=local" > /etc/ansible/hosts |
12 changes: 6 additions & 6 deletions
12
tests/Dockerfile.centos-6.ansible-2.2.2.0 → tests/Dockerfile.centos-8.ansible-2.5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM centos:6 | ||
#RUN yum update | ||
FROM centos:8 | ||
RUN yum -y update | ||
|
||
# Install OpenSSH server | ||
RUN yum install -y openssh-server epel-release libffi-devel gcc | ||
|
||
# Install Ansible | ||
RUN yum install -y python-pip python-devel openssl-devel | ||
RUN yum install -y python3-pip python3-devel openssl-devel | ||
#software-properties-common git python-dev libffi-dev libssl-dev | ||
RUN pip install --upgrade pip | ||
RUN pip install -U setuptools | ||
RUN pip install 'ansible==2.2.2.0' | ||
RUN pip3 install -U setuptools | ||
RUN pip3 install 'ansible~=2.5.0' | ||
RUN alternatives --set python /usr/bin/python3 | ||
|
||
# Install Ansible inventory file | ||
RUN mkdir /etc/ansible/ && echo "localhost ansible_connection=local" > /etc/ansible/hosts |
12 changes: 6 additions & 6 deletions
12
tests/Dockerfile.centos-6.ansible-2.3.0.0 → tests/Dockerfile.centos-8.ansible-2.9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM centos:6 | ||
#RUN yum update | ||
FROM centos:8 | ||
RUN yum -y update | ||
|
||
# Install OpenSSH server | ||
RUN yum install -y openssh-server epel-release libffi-devel gcc | ||
|
||
# Install Ansible | ||
RUN yum install -y python-pip python-devel openssl-devel | ||
RUN yum install -y python3-pip python3-devel openssl-devel | ||
#software-properties-common git python-dev libffi-dev libssl-dev | ||
RUN pip install --upgrade pip | ||
RUN pip install -U setuptools | ||
RUN pip install 'ansible==2.3.0.0' | ||
RUN pip3 install -U setuptools | ||
RUN pip3 install 'ansible~=2.9.0' | ||
RUN alternatives --set python /usr/bin/python3 | ||
|
||
# Install Ansible inventory file | ||
RUN mkdir /etc/ansible/ && echo "localhost ansible_connection=local" > /etc/ansible/hosts |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM ubuntu:18.04 | ||
RUN apt-get update | ||
|
||
# Install OpenSSH server | ||
RUN apt-get install -y openssh-server | ||
|
||
# Install Ansible | ||
RUN apt-get install -y software-properties-common git python3-pip python3-dev libffi-dev libssl-dev | ||
RUN pip3 install -U setuptools | ||
RUN pip3 install 'ansible~=2.9.0' | ||
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10 | ||
|
||
# Install Ansible inventory file | ||
RUN mkdir /etc/ansible/ && echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts |