diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-21 19:44:20 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-02-21 19:44:44 +0100 |
commit | b5c6d946968af3f776f8aead4d128630abef9609 (patch) | |
tree | d49353579edd8416d7aac8bf38cd1cff41fe5028 /docs | |
parent | db246ebed19a19d7c9f48077742523095e74b876 (diff) | |
download | vyos-documentation-b5c6d946968af3f776f8aead4d128630abef9609.tar.gz vyos-documentation-b5c6d946968af3f776f8aead4d128630abef9609.zip |
command-scripting: remove trailing whitespaces
(cherry picked from commit c523a87aaa79f1bf98301004ff60ff29c352f85f)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/automation/command-scripting.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/automation/command-scripting.rst b/docs/automation/command-scripting.rst index af93a4a8..76778853 100644 --- a/docs/automation/command-scripting.rst +++ b/docs/automation/command-scripting.rst @@ -141,20 +141,20 @@ The default directories where your custom Scripts should be located are: .. code-block:: none - /config/scripts/commit/pre-hooks.d - Directory with scripts that run before + /config/scripts/commit/pre-hooks.d - Directory with scripts that run before each commit. /config/scripts/commit/post-hooks.d - Directory with scripts that run after each commit. -Scripts are run in alphabetical order. Their names must consist entirely of -ASCII upper- and lower-case letters,ASCII digits, ASCII underscores, and +Scripts are run in alphabetical order. Their names must consist entirely of +ASCII upper- and lower-case letters,ASCII digits, ASCII underscores, and ASCII minus-hyphens.No other characters are allowed. .. note:: Custom scripts are not executed with root privileges (Use sudo inside if this is necessary). -A simple example is shown below, where the ops command executed in +A simple example is shown below, where the ops command executed in the post-hook script is "show interfaces". .. code-block:: none @@ -169,7 +169,7 @@ the post-hook script is "show interfaces". eth2 - u/u eth3 - u/u lo 203.0.113.5/24 u/u - + Preconfig on boot ----------------- @@ -184,9 +184,9 @@ The default file looks like this: .. code-block:: none #!/bin/sh - # This script is executed at boot time before VyOS configuration is applied. + # This script is executed at boot time before VyOS configuration is applied. # Any modifications required to work around unfixed bugs or use - # services not available through the VyOS CLI system can be placed here. + # services not available through the VyOS CLI system can be placed here. Postconfig on boot |