From 2b098e3bd3717a7945ee4486b60090494d11e0bd Mon Sep 17 00:00:00 2001 From: Ganesh Hegde Date: Thu, 16 Apr 2020 12:29:25 +0200 Subject: [PATCH 1/2] update macos autostart doc with a footnote Related to #12947 --- source/_docs/autostart/macos.markdown | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/source/_docs/autostart/macos.markdown b/source/_docs/autostart/macos.markdown index 8dc41a3fc8f9..8244f6164a85 100644 --- a/source/_docs/autostart/macos.markdown +++ b/source/_docs/autostart/macos.markdown @@ -8,7 +8,6 @@ Setting up Home Assistant to run as a background service is simple; macOS will s To get Home Assistant installed as a background service, run: - ```bash $ hass --script macos install @@ -26,3 +25,11 @@ $ hass --script macos uninstall Home Assistant has been uninstalled. ``` + + +Note: +`automake` is required for `hass` to start. If you are missing this on your system, you can install this by running: + +``` +brew install autoconf +``` From 10e83c44de1520bfdb4c7635fa7a7f41a05b70dc Mon Sep 17 00:00:00 2001 From: Ganesh Hegde Date: Thu, 16 Apr 2020 12:35:48 +0200 Subject: [PATCH 2/2] add missing code language flag --- source/_docs/autostart/macos.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_docs/autostart/macos.markdown b/source/_docs/autostart/macos.markdown index 8244f6164a85..b7ab19dbd93c 100644 --- a/source/_docs/autostart/macos.markdown +++ b/source/_docs/autostart/macos.markdown @@ -30,6 +30,6 @@ Home Assistant has been uninstalled. Note: `automake` is required for `hass` to start. If you are missing this on your system, you can install this by running: -``` -brew install autoconf +```bash +$ brew install autoconf ```