From 77ec85ea3bd9b0cf5e29f7365e7d00b3e4f882da Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 23 Oct 2017 16:16:53 -0400 Subject: [PATCH] README: use /run paths Since /var/run is a symlink to /run, and we want to avoid going through the stateful /var whenever possible, use the direct path. BUG=chromium:699880 TEST=precq passes Change-Id: I5d95f5358c1fb0cb2ca73f9c4b145d8e36b4a361 Reviewed-on: https://chromium-review.googlesource.com/734225 Commit-Ready: Mike Frysinger Tested-by: Mike Frysinger Reviewed-by: Zach Reizner --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0427a7d82f..f49913a3bc 100644 --- a/README.md +++ b/README.md @@ -57,9 +57,9 @@ while crosvm is running. To tell crosvm to stop and exit, for example: >**NOTE:** If the socket path given is for a directory, a socket name underneath that path will be generated based on crosvm's PID. ```bash -$ crosvm run -s /var/run/crosvm.sock ${USUAL_CROSVM_ARGS} +$ crosvm run -s /run/crosvm.sock ${USUAL_CROSVM_ARGS} -$ crosvm stop /var/run/crosvm.sock +$ crosvm stop /run/crosvm.sock ``` >**WARNING:** The guest OS will not be notified or gracefully shutdown.