Skip to content

Further polish a wording issue I created in #4209 #4211

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/operate/reference/viam-server/manage-viam-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,12 +255,12 @@ When you stop or restart `viam-agent`, the agent also restarts `viam-server`.
{{% /tab %}}
{{% tab name="Manual" %}}

`viam-server` automatically checks for updates when launched.
On Linux, you can disable automatic `viam-server` these checks.
To disable update checks, open <file>/etc/systemd/system/viam-server.service</file> service file and comment out the line that starts with `ExecStartPre`.
Prepend a `#` character to the line so that it matches the following:
`viam-server` automatically checks for updates.
On Linux, you can disable automatic `viam-server` updates.
To disable the updates, open <file>/etc/systemd/system/viam-server.service</file> and comment out the line that starts with `ExecStartPre`.
Add a `#` character at the beginning of the line so that it matches the following:

```sh {class="command-line" data-prompt="$"}
```sh
# ExecStartPre=-/usr/local/bin/viam-server --aix-update
```

Expand All @@ -270,7 +270,7 @@ Then, reload the service file with the following command:
sudo systemctl daemon-reload
```

To resume automatic update checking, delete the leading `#` character once more, and run `sudo systemctl daemon-reload` again.
To resume automatic update checking, delete the leading `#` character in <file>/etc/systemd/system/viam-server.service</file>, then run `sudo systemctl daemon-reload` again.

{{% /tab %}}
{{< /tabs >}}
Expand Down
Loading