Update Anon and accept terms and conditions

This page helps you with updating the Anon binary and accepting the terms and conditions.

When installing or upgrading the Anon package to version anon-0.4.9.7 and above, necessary steps to agree to the Terms and Conditions must be applied, for these operations to succeed successfully. We offer different methods to accept the agreement, either manually or in advance.

Using APT package manager

Update list of available packages

sudo apt-get update

Upgrade to the latest Anon package.

sudo apt-get --only-upgrade install anon

Accept the terms and conditions by highlighting <Yes> and hit Enter.


How to accept the Terms and Conditions prior to installing or upgrading the Anon binary.

Preseed debconf database:

Apply the debconf preseed:

sudo echo "anon anon/terms boolean true" | debconf-set-selections

Verify that the debconf preseed has applied properly:

sudo debconf-show anon

Agree to terms and conditions with a parameter in anonrc:

Add the parameter AgreeToTerms 1 in the anonrc file, normally located /etc/anon/anonrc.

Ansible playbook:

Add the

playbook.yaml
- name: Accept terms and conditions
  ansible.builtin.debconf:
    name: anon
    question: anon/terms
    value: "true"
    vtype: select

Last updated