From 169d48ff57077a96ddefa70420644499f6e138fb Mon Sep 17 00:00:00 2001 From: Joey Geiger Date: Wed, 12 Nov 2014 14:10:31 -0700 Subject: [PATCH 1/2] Update README to use ~ for the home directory Using ~ to specify the home directory should allow anyone to copy/paste the example. Also, this makes all the references the same. Previously there was a /home/sven and a /Users/sven. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 693a13e..283089c 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ The `boot2docker` binary reads configuration from `$BOOT2DOCKER_PROFILE` if set, `%USERPROFILE%/.boot2docker/profile`. `boot2docker config` will tell you where it is looking for the file, and will also output the settings that are in use, so you can initialise a default file to customize using -`boot2docker config > /home/sven/.boot2docker/profile`. +`boot2docker config > ~/.boot2docker/profile`. Currently you can configure the following options (undefined options take default values): @@ -137,7 +137,7 @@ VBM = "VBoxManage" # path to SSH client utility SSH = "ssh" SSHGen = "ssh-keygen" -SSHKey = "/Users/sven/.ssh/id_boot2docker" +SSHKey = "~/.ssh/id_boot2docker" # name of boot2docker virtual machine VM = "boot2docker-vm" @@ -150,7 +150,7 @@ ISOURL = "https://api.github.com/repos/boot2docker/boot2docker/releases" #ISOURL = "https://internal.corp.org/b2d.iso" # path to boot2docker ISO image -ISO = "/Users/sven/.boot2docker/boot2docker.iso" +ISO = "~/.boot2docker/boot2docker.iso" # VM disk image size in MB DiskSize = 20000 From 5bc8009bc970268c7c298e80c8b989b8fde72ccb Mon Sep 17 00:00:00 2001 From: Joey Geiger Date: Thu, 13 Nov 2014 08:34:15 -0700 Subject: [PATCH 2/2] Revert changes to "config" parameters Per comment on the pull request, I've reverted the changes to the example parameters. I still believe the create config section should be changed as anyone can then copy/paste the command to create their config file without having to edit the command. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 283089c..2455237 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ VBM = "VBoxManage" # path to SSH client utility SSH = "ssh" SSHGen = "ssh-keygen" -SSHKey = "~/.ssh/id_boot2docker" +SSHKey = "/Users/sven/.ssh/id_boot2docker" # name of boot2docker virtual machine VM = "boot2docker-vm" @@ -150,7 +150,7 @@ ISOURL = "https://api.github.com/repos/boot2docker/boot2docker/releases" #ISOURL = "https://internal.corp.org/b2d.iso" # path to boot2docker ISO image -ISO = "~/.boot2docker/boot2docker.iso" +ISO = "/Users/sven/.boot2docker/boot2docker.iso" # VM disk image size in MB DiskSize = 20000