From 81357e12e7a019c14d87dc491705ad92409293b7 Mon Sep 17 00:00:00 2001 From: "Nicholas E. Rabenau" Date: Sat, 13 Sep 2014 22:26:40 +0200 Subject: [PATCH] Append instead of replace file contents I think the `DOCKER_OPTS` should be appended to `/etc/default/docker` and not replace the entire contents. --- docs/sources/articles/host_integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/articles/host_integration.md b/docs/sources/articles/host_integration.md index fa442620e5..2fe9744a90 100644 --- a/docs/sources/articles/host_integration.md +++ b/docs/sources/articles/host_integration.md @@ -42,7 +42,7 @@ it: Next, we have to configure docker so that it's run with the option `-r=false`. Run the following command: - $ sudo sh -c "echo 'DOCKER_OPTS=\"-r=false\"' > /etc/default/docker" + $ sudo sh -c "echo 'DOCKER_OPTS=\"-r=false\"' >> /etc/default/docker" ## Sample systemd Script