aboutsummaryrefslogtreecommitdiffhomepage
path: root/master-centos7
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2016-02-25 11:11:20 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2016-02-25 11:11:20 +0800
commit7b2618d5a775fd669a36076e6f8d2380aa73af69 (patch)
treeaa0c605de300b84b96a183a38ca110d3a3105a7a /master-centos7
parent090ca1a3055b77d22c601546c09e7ef0432f56c4 (diff)
downloaddocker-ansible-7b2618d5a775fd669a36076e6f8d2380aa73af69.tar.gz
docker-ansible-7b2618d5a775fd669a36076e6f8d2380aa73af69.tar.zst
docker-ansible-7b2618d5a775fd669a36076e6f8d2380aa73af69.zip
Fix: remove the need for an 'echo -e' option due to inconsistency treatments among various Linux distributions and versions.
For example: Ubuntu 12.04 and 14.04.
Diffstat (limited to 'master-centos7')
-rw-r--r--master-centos7/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/master-centos7/Dockerfile b/master-centos7/Dockerfile
index a50171d..1dfa1ab 100644
--- a/master-centos7/Dockerfile
+++ b/master-centos7/Dockerfile
@@ -66,7 +66,7 @@ RUN echo "===> Installing EPEL..." && \
66 \ 66 \
67 echo "===> Adding hosts for convenience..." && \ 67 echo "===> Adding hosts for convenience..." && \
68 mkdir -p /etc/ansible && \ 68 mkdir -p /etc/ansible && \
69 echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts 69 echo 'localhost' > /etc/ansible/hosts
70 70
71 71
72ENV PATH /opt/ansible/bin:$PATH 72ENV PATH /opt/ansible/bin:$PATH