mirror of
https://github.com/jimeh/ansible-adguardhome.git
synced 2026-02-18 22:56:39 +00:00
docs(readme): Fix typo
This commit is contained in:
10
README.md
10
README.md
@@ -25,23 +25,23 @@ what's listed above.
|
|||||||
Configurable role variables are all defined in `defaults/main.yml`:
|
Configurable role variables are all defined in `defaults/main.yml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Version of AdGuard Home to install. If set to "latest", lookup the latest
|
# Version of AdGuard Home to install (without "v" prefix). If set to "latest",
|
||||||
# release via GitHub API.
|
# lookup the latest release via GitHub API.
|
||||||
adguardhome_version: "latest"
|
adguardhome_version: "latest"
|
||||||
|
|
||||||
# When desired version is "latest", use GITHUB_TOKEN environment variable when
|
# When desired version is "latest", use GITHUB_TOKEN environment variable when
|
||||||
# looking up the latest release via GitHub's API. If you get rate limit errors
|
# looking up the latest release via GitHub's API. If you get rate limit errors
|
||||||
# from GitHub's API, turni this on and set the GITHUB_TOKEN environment variable
|
# from GitHub's API, turn this on and set the GITHUB_TOKEN environment variable
|
||||||
# to a Personal Access Token with "repo" and "user" scopes.
|
# to a Personal Access Token with "repo" and "user" scopes.
|
||||||
adguardhome_use_github_token: false
|
adguardhome_use_github_token: false
|
||||||
|
|
||||||
# User to run AdGuard Home under. Must initially be "root" if no conig file is
|
# User to run AdGuard Home under. Must initially be "root" if no config file is
|
||||||
# on disk. After going through the setup wizard, or manually adding a config
|
# on disk. After going through the setup wizard, or manually adding a config
|
||||||
# file, this can be set to something else, like "adguard" for example.
|
# file, this can be set to something else, like "adguard" for example.
|
||||||
adguardhome_user: root
|
adguardhome_user: root
|
||||||
adguardhome_group: "{{ adguardhome_user }}"
|
adguardhome_group: "{{ adguardhome_user }}"
|
||||||
|
|
||||||
# When setting adguardhome_user to someething other than "root", this determines
|
# When setting adguardhome_user to something other than "root", this determines
|
||||||
# if the user will be created as a system user or not. Rule of thumb is if the
|
# if the user will be created as a system user or not. Rule of thumb is if the
|
||||||
# user is logged in to by humans, it probably is not a system user.
|
# user is logged in to by humans, it probably is not a system user.
|
||||||
adguardhome_system_user: true
|
adguardhome_system_user: true
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
---
|
---
|
||||||
# Version of AdGuard Home to install. If set to "latest", lookup the latest
|
# Version of AdGuard Home to install (without "v" prefix). If set to "latest",
|
||||||
# release via GitHub API.
|
# lookup the latest release via GitHub API.
|
||||||
adguardhome_version: "latest"
|
adguardhome_version: "latest"
|
||||||
|
|
||||||
# When desired version is "latest", use GITHUB_TOKEN environment variable when
|
# When desired version is "latest", use GITHUB_TOKEN environment variable when
|
||||||
# looking up the latest release via GitHub's API. If you get rate limit errors
|
# looking up the latest release via GitHub's API. If you get rate limit errors
|
||||||
# from GitHub's API, turni this on and set the GITHUB_TOKEN environment variable
|
# from GitHub's API, turn this on and set the GITHUB_TOKEN environment variable
|
||||||
# to a Personal Access Token with "repo" and "user" scopes.
|
# to a Personal Access Token with "repo" and "user" scopes.
|
||||||
adguardhome_use_github_token: false
|
adguardhome_use_github_token: false
|
||||||
|
|
||||||
# User to run AdGuard Home under. Must initially be "root" if no conig file is
|
# User to run AdGuard Home under. Must initially be "root" if no config file is
|
||||||
# on disk. After going through the setup wizard, or manually adding a config
|
# on disk. After going through the setup wizard, or manually adding a config
|
||||||
# file, this can be set to something else, like "adguard" for example.
|
# file, this can be set to something else, like "adguard" for example.
|
||||||
adguardhome_user: root
|
adguardhome_user: root
|
||||||
adguardhome_group: "{{ adguardhome_user }}"
|
adguardhome_group: "{{ adguardhome_user }}"
|
||||||
|
|
||||||
# When setting adguardhome_user to someething other than "root", this determines
|
# When setting adguardhome_user to something other than "root", this determines
|
||||||
# if the user will be created as a system user or not. Rule of thumb is if the
|
# if the user will be created as a system user or not. Rule of thumb is if the
|
||||||
# user is logged in to by humans, it probably is not a system user.
|
# user is logged in to by humans, it probably is not a system user.
|
||||||
adguardhome_system_user: true
|
adguardhome_system_user: true
|
||||||
|
|||||||
Reference in New Issue
Block a user