]> git.immae.eu Git - github/fretlink/docker-ansible.git/commitdiff
Fix: remove the need for an 'echo -e' option due to inconsistency treatments among...
authorWilliam Yeh <william.pjyeh@gmail.com>
Thu, 25 Feb 2016 03:11:20 +0000 (11:11 +0800)
committerWilliam Yeh <william.pjyeh@gmail.com>
Thu, 25 Feb 2016 03:11:20 +0000 (11:11 +0800)
For example: Ubuntu 12.04 and 14.04.

26 files changed:
alpine3-onbuild/Dockerfile
alpine3/Dockerfile
centos6-onbuild/Dockerfile
centos6/Dockerfile
centos7-onbuild/Dockerfile
centos7/Dockerfile
debian7-onbuild/Dockerfile
debian7/Dockerfile
debian8-onbuild/Dockerfile
debian8/Dockerfile
master-centos6-onbuild/Dockerfile
master-centos6/Dockerfile
master-centos7-onbuild/Dockerfile
master-centos7/Dockerfile
master-debian7-onbuild/Dockerfile
master-debian7/Dockerfile
master-debian8-onbuild/Dockerfile
master-debian8/Dockerfile
master-ubuntu12.04-onbuild/Dockerfile
master-ubuntu12.04/Dockerfile
master-ubuntu14.04-onbuild/Dockerfile
master-ubuntu14.04/Dockerfile
ubuntu12.04-onbuild/Dockerfile
ubuntu12.04/Dockerfile
ubuntu14.04-onbuild/Dockerfile
ubuntu14.04/Dockerfile

index cef5b3ba831759f6fc894531ea0b8721c26ebf23..5244d1ea5704b59e7e42b7317a1c17a05c22a840 100644 (file)
@@ -29,7 +29,7 @@ RUN echo "===> Adding Python runtime..."  && \
     \
     echo "===> Adding hosts for convenience..."  && \
     mkdir -p /etc/ansible                        && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index d156f30892fecca3d4d0c0a85f1be0ff5fa990c4..28550b253c114fd0ce6079a19233fc95145c30ad 100644 (file)
@@ -29,7 +29,7 @@ RUN echo "===> Adding Python runtime..."  && \
     \
     echo "===> Adding hosts for convenience..."  && \
     mkdir -p /etc/ansible                        && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 # default command: display Ansible version
index 6c94671f198978a1e2fa6e6c1c092a73fb1e08ae..56855efbd7bb37ce3a5f2c5038886c27442f853b 100644 (file)
@@ -45,7 +45,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
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index fc051d695d633798de886d3dca5bee8b4ed44575..fe13935c6af381f45db20d5b480e4d6ecc117958 100644 (file)
@@ -45,7 +45,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
 
 
 # default command: display Ansible version
index 1ae1f81627c681e4bf7956a07fb4bf29dc191bd5..7d6caf09050e361077a59222bf7a45e7404de7e9 100644 (file)
@@ -45,7 +45,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
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index d0278fd5d179b581b44f37de985cfa7ef7e64e16..e6c9f9e38baa38457386c600ea964be45d751908 100644 (file)
@@ -45,7 +45,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
 
 
 # default command: display Ansible version
index e59335557153f513e364fe7ac1f39fc5069c13fc..fb823fd9967f6fa10c09b1a8ea1597ed4da45539 100644 (file)
@@ -32,7 +32,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..."  && \
     \
     echo "===> Adding hosts for convenience..."        && \
     mkdir -p /etc/ansible                              && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index e6d795e7d61e76e576dae2426a51158d52775cce..73ea5d99f643189a8bb0d4095b1477359d71d3fb 100644 (file)
@@ -32,7 +32,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..."  && \
     \
     echo "===> Adding hosts for convenience..."        && \
     mkdir -p /etc/ansible                              && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 # default command: display Ansible version
index 27271352da5554525a8a24243eda2235dce2099a..c5fc2274eff0d412f1383f4ce637592f0b2d713a 100644 (file)
@@ -32,7 +32,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..."  && \
     \
     echo "===> Adding hosts for convenience..."        && \
     mkdir -p /etc/ansible                              && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index c643c1967316029649eae1add5ec8c216e9e73a9..e7ead92898c397d052a0d8823cc40e72637c3a70 100644 (file)
@@ -32,7 +32,7 @@ RUN echo "===> Installing python, sudo, and supporting tools..."  && \
     \
     echo "===> Adding hosts for convenience..."        && \
     mkdir -p /etc/ansible                              && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 # default command: display Ansible version
index 9b21459152ce2c7579d1ea3f9882d5098cf8b5eb..4b8585d6e4ee5672f8d1f9ed7d963be9836eedff 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
index 61c2c154e320ce60b5c4a3c11d7ae6bfd6eacf3d..d90a08bda8d3b8e1a16ef3d0ea3d33cdc8b3c075 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
index feb87fec2d2f2535dbe58d5643ba4a475dc90d82..6087ad7c0456aae57ac891c29a63478dafa5865c 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
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
index 41f7ba99282d2b4341bfaf98fec475da23b015be..1222020c628cec7b5ea094ae01e39002c1791701 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index 0c19f7c4219acafeeafe6ef9e1d245e707fe1a9a..5c7f2c4b57c9a01ef9ae9277cd87bb1076d20159 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index d3066e39b5c457e3ef1b65cf81e80ab7561d2b06..19d493409faf4413866bad3c80803942a429b928 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index 1615ae5824b54b4c12e29713f5e254f3b1c61038..fcf957cfdd2dc74e02be2fc25ea736150a496371 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index 38b10396c5606aebc686d920fa1ee67a94bb7dc6..ed11e78924f746c232639df9e7f63049f2dd5fc9 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index 38b10396c5606aebc686d920fa1ee67a94bb7dc6..ed11e78924f746c232639df9e7f63049f2dd5fc9 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index cd49dc42304e568056403f5d9abfc3c888b59a62..937d783511408eb8a786760455a9964ac68a44f6 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index 19075cceca34c10711a32b09779fb789dedaa21a..4c0a154db91f2257d4292b2a02fea28564e148b1 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     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
index 20ab8a1669e250a5f3e0778b35ffcf40d042c966..3816c24c36cbadb708ad1c23b0af398d9967a299 100644 (file)
@@ -28,7 +28,7 @@ RUN echo "===> Adding Ansible's PPA..."  && \
     \
     \
     echo "===> Adding hosts for convenience..."  && \
-    echo '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index 47eb6a30a68f48f5b4fcd133bfe09af081250482..42bb74328f67e8e7f11147b8cc2a6588dbe12621 100644 (file)
@@ -28,7 +28,7 @@ RUN echo "===> Adding Ansible's PPA..."  && \
     \
     \
     echo "===> Adding hosts for convenience..."  && \
-    echo '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 # default command: display Ansible version
index 295e88bd6d2d04a1516cced56d52782ca0b28f03..d9a187345d9fbcb5de8f7fd9d8ae67aa6fee1abf 100644 (file)
@@ -28,7 +28,7 @@ RUN echo "===> Adding Ansible's PPA..."  && \
     \
     \
     echo "===> Adding hosts for convenience..."  && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 COPY ansible-playbook-wrapper /usr/local/bin/
index 99dd21fbba799e6a6f054da16f22b4812e62e237..187d39cab503df0244d00a355c67754b76434eba 100644 (file)
@@ -28,7 +28,7 @@ RUN echo "===> Adding Ansible's PPA..."  && \
     \
     \
     echo "===> Adding hosts for convenience..."  && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 # default command: display Ansible version