]> git.immae.eu Git - github/fretlink/docker-ansible.git/blobdiff - master-centos7/Dockerfile
Fix: remove the need for an 'echo -e' option due to inconsistency treatments among...
[github/fretlink/docker-ansible.git] / master-centos7 / Dockerfile
index a50171d4e21a5d8cf73c2981e455605bd6d68f80..1dfa1ab70bc25a8ab8a1af4a95b05513910c8f57 100644 (file)
@@ -66,7 +66,7 @@ RUN echo "===> Installing EPEL..."   && \
     \
     echo "===> Adding hosts for convenience..."    && \
     mkdir -p /etc/ansible                          && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 ENV PATH        /opt/ansible/bin:$PATH