From 388dd67388f048ed74cc50d700df66224b5cf4a6 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Fri, 30 May 2014 11:42:19 -0700 Subject: [PATCH] fix(docs): Fix minor typo describing runtime field for units --- Documentation/cloud-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/cloud-config.md b/Documentation/cloud-config.md index f2df54c..f1c657e 100644 --- a/Documentation/cloud-config.md +++ b/Documentation/cloud-config.md @@ -115,7 +115,7 @@ coreos: The `coreos.units.*` parameters define a list of arbitrary systemd units to start. Each item is an object with the following fields: - **name**: String representing unit's name. Required. -- **runtime**: Boolean indicating whether or not to persist the unit across reboots. This is analogous to the `--runtime` argument to `systemd enable`. Default value is false. +- **runtime**: Boolean indicating whether or not to persist the unit across reboots. This is analogous to the `--runtime` argument to `systemctl enable`. Default value is false. - **enable**: Boolean indicating whether or not to handle the [Install] section of the unit file. This is similar to running `systemctl enable `. Default value is false. - **content**: Plaintext string representing entire unit file. If no value is provided, the unit is assumed to exist already. - **command**: Command to execute on unit: start, stop, reload, restart, try-restart, reload-or-restart, reload-or-try-restart. Default value is restart.