Skip to content
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

Update to AdGuard Home 0.107.41 #16

Merged
merged 1 commit into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
adguardhome_version: 0.107.40
adguardhome_version: 0.107.41
adguardhome_user: adguardhome
adguardhome_group: adguardhome
adguardhome_daemon: adguardhome
Expand Down Expand Up @@ -164,3 +164,5 @@
adguardhome_pprof_port: 6000
adguardhome_pprof_enabled: 'false'
adguardhome_fallback_dns: []
adguardhome_ratelimit_subnet_len_ipv4: 24
adguardhome_ratelimit_subnet_len_ipv6: 56

Check failure on line 168 in defaults/main.yml

View workflow job for this annotation

GitHub Actions / Lint

168:42 [new-line-at-end-of-file] no new line character at the end of file
2 changes: 1 addition & 1 deletion molecule/ci/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
chdir: /usr/local/bin
changed_when: false
register: __adguardhome_version
failed_when: __adguardhome_version is not search('0.107.40')
failed_when: __adguardhome_version is not search('0.107.41')

- name: Check if adguardhome.service is started
ansible.builtin.service:
Expand Down
2 changes: 1 addition & 1 deletion molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
chdir: /usr/local/bin
changed_when: false
register: __adguardhome_version
failed_when: __adguardhome_version is not search('0.107.40')
failed_when: __adguardhome_version is not search('0.107.41')

- name: Check if adguardhome.service is started
ansible.builtin.service:
Expand Down
2 changes: 2 additions & 0 deletions templates/AdGuardHome.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ dns:
port: {{ adguardhome_dnsport }}
anonymize_client_ip: {{ adguardhome_anonymize_client_ip }}
ratelimit: {{ adguardhome_ratelimit }}
ratelimit_subnet_len_ipv4: {{ adguardhome_ratelimit_subnet_len_ipv4 }}
ratelimit_subnet_len_ipv6: {{ adguardhome_ratelimit_subnet_len_ipv6 }}
ratelimit_whitelist:{% if adguardhome_ratelimit_whitelist|length <= 0 %}
[]
{% else %}
Expand Down
Loading