From 76038687f2412edea5f9547bcaa9e3de0e19bd33 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Sat, 23 Apr 2022 14:23:39 +0200
Subject: [PATCH] Add rsync Pull Ansible image when necessary

---
 Dockerfile         | 2 +-
 bin/docker-ansible | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 8eb91f1..ed7f70a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -52,7 +52,7 @@ RUN echo 'hosts: files dns' > /etc/nsswitch.conf && \
     echo "StrictHostKeyChecking no" >> /root/.ssh/config && \
     \
     apk update && \
-    apk add --no-cache openssh wget make patch bash fish zsh python3 git git-lfs unzip acl libpng-dev libzip-dev sudo jq nano && \
+    apk add --no-cache openssh wget make patch bash fish zsh python3 git git-lfs unzip acl libpng-dev libzip-dev sudo jq nano rsync && \
     if [ "${ALPINE_VERSION}" = "3.12" ]; then \
       apk add --no-cache mandoc ; \
     elif [ "${ALPINE_VERSION}" = "3.15" ]; then \
diff --git a/bin/docker-ansible b/bin/docker-ansible
index d9f27ec..0782091 100755
--- a/bin/docker-ansible
+++ b/bin/docker-ansible
@@ -3,7 +3,7 @@
 SCRIPT=$1
 shift
 
-docker run \
+docker run --pull always \
   $(php /usr/local/bin/volume.php --all) \
   registry.lakedrops.com/ansible-inventories/localhost \
   /usr/local/bin/$SCRIPT "$@"  --limit=localhost
-- 
GitLab