From 5e3e8f59a523efff832ad7069b56c6753d3a945d Mon Sep 17 00:00:00 2001 From: overkill32 Date: Wed, 3 Jan 2018 13:34:05 -0700 Subject: [PATCH] Update freenas.markdown (#4307) * Update freenas.markdown The example provided for a chained command to mkdir /home and /home/.homeassistant was missing the second mkdir command. A copy and paste of this example would fail. * Update freenas.markdown Updated mkdir commands to use '-p' option. --- source/_docs/installation/freenas.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/installation/freenas.markdown b/source/_docs/installation/freenas.markdown index acf67bb0b88..6679275764c 100644 --- a/source/_docs/installation/freenas.markdown +++ b/source/_docs/installation/freenas.markdown @@ -33,7 +33,7 @@ Create an `/etc/rc.local` file to enable Home Assistant to start when the jail s ```bash -# cd / && mkdir /home && /home/.homeassistant/ +# cd / && mkdir -p /home/.homeassistant ``` ```bash