Skip to content

Commit

Permalink
Merge pull request #264 from vshn/feature/ansible-add-sshclient
Browse files Browse the repository at this point in the history
Add ssh-client package to Ansible image
  • Loading branch information
htuscher committed Aug 28, 2018
2 parents ec14e1d + 392cf91 commit c96b8c4
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker/ansible/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ RUN set -x \
py-yaml \
py-jinja2 \
py-paramiko \
ssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/centos-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN set -x \
libffi \
python-devel \
libffi-devel \
ssh-clients \
&& easy_install pip \
&& pip install --upgrade pip \
&& hash -r \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/debian-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/debian-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/debian-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/ubuntu-12.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/ubuntu-14.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/ubuntu-15.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/ubuntu-15.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/ubuntu-16.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/ansible/ubuntu-17.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
1 change: 1 addition & 0 deletions docker/samson-deployment/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ RUN set -x \
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down
4 changes: 4 additions & 0 deletions template/Dockerfile/images/ansible.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
py-yaml \
py-jinja2 \
py-paramiko \
ssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand All @@ -38,6 +39,7 @@
libffi \
python-devel \
libffi-devel \
ssh-clients \
&& easy_install pip \
&& pip install --upgrade pip \
&& hash -r \
Expand All @@ -61,6 +63,7 @@
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand All @@ -86,6 +89,7 @@
libffi-dev \
libssl-dev \
build-essential \
openssh-client \
&& pip install --upgrade pip \
&& hash -r \
&& pip install --no-cache-dir ansible \
Expand Down

0 comments on commit c96b8c4

Please sign in to comment.