From: William Yeh Date: Wed, 24 Feb 2016 22:27:47 +0000 (+0800) Subject: Rollback: escaping '\n' character in echo command for Ubuntu Precise (12.04). X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=090ca1a3055b77d22c601546c09e7ef0432f56c4;hp=de4433f39c6cf4258845db2ee8a7757500d943c2;p=github%2Ffretlink%2Fdocker-ansible.git Rollback: escaping '\n' character in echo command for Ubuntu Precise (12.04). --- diff --git a/ubuntu12.04-onbuild/Dockerfile b/ubuntu12.04-onbuild/Dockerfile index c754846..20ab8a1 100644 --- a/ubuntu12.04-onbuild/Dockerfile +++ b/ubuntu12.04-onbuild/Dockerfile @@ -28,7 +28,7 @@ RUN echo "===> Adding Ansible's PPA..." && \ \ \ echo "===> Adding hosts for convenience..." && \ - echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts + echo '[local]\nlocalhost\n' > /etc/ansible/hosts COPY ansible-playbook-wrapper /usr/local/bin/ diff --git a/ubuntu12.04/Dockerfile b/ubuntu12.04/Dockerfile index 0cbb2d8..47eb6a3 100644 --- a/ubuntu12.04/Dockerfile +++ b/ubuntu12.04/Dockerfile @@ -28,7 +28,7 @@ RUN echo "===> Adding Ansible's PPA..." && \ \ \ echo "===> Adding hosts for convenience..." && \ - echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts + echo '[local]\nlocalhost\n' > /etc/ansible/hosts # default command: display Ansible version