From 090ca1a3055b77d22c601546c09e7ef0432f56c4 Mon Sep 17 00:00:00 2001 From: William Yeh Date: Thu, 25 Feb 2016 06:27:47 +0800 Subject: [PATCH 1/1] Rollback: escaping '\n' character in echo command for Ubuntu Precise (12.04). --- ubuntu12.04-onbuild/Dockerfile | 2 +- ubuntu12.04/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.41.0