No description
Find a file
semantic-release-bot a91ae70d08 chore(release): 1.6.0 [skip ci]
# [1.6.0](https://github.com/de-it-krachten/ansible-role-privoxy/compare/v1.5.0...v1.6.0) (2026-03-15)

### Features

* Added support for Fedora 43 ([d99ebaf](d99ebafaa1))
* Drop support for Fedora 41 ([3bdd372](3bdd372aee))
2026-03-15 11:40:25 +00:00
.github/workflows Update supported platforms & CI 2026-03-14 19:54:13 +01:00
defaults xx 2022-09-26 10:12:04 +02:00
handlers feat: Move to FQCN 2022-10-09 22:20:58 +02:00
meta Update CI 2026-03-06 23:02:54 +01:00
molecule/default Update supported platforms & CI 2026-03-14 15:16:46 +01:00
tasks feat: Move to namespaced role names 2023-01-26 22:12:11 +01:00
templates xx 2022-09-26 10:06:28 +02:00
.ansible-lint feat: Update CI to latest standards 2022-10-10 00:13:07 +02:00
.cicd Update CI 2026-03-06 23:02:54 +01:00
.cicd.overwrite Update CI 2026-03-06 23:02:54 +01:00
.collections feat: Move to FQCN 2022-10-09 22:20:58 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 11:44:09 +01:00
.releaserc.yml Update CI 2026-03-06 23:02:54 +01:00
.roles feat: Update CI to latest standards 2022-10-10 00:13:07 +02:00
.yamllint feat: Update supported platforms & CI 2024-12-29 11:44:09 +01:00
CHANGELOG.md chore(release): 1.6.0 [skip ci] 2026-03-15 11:40:25 +00:00
README.md Update CI 2026-03-06 23:02:54 +01:00

CI

ansible-role-privoxy

Manage privoxy

Dependencies

Roles

None

Collections

None

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • RockyLinux 8
  • RockyLinux 9
  • OracleLinux 8
  • OracleLinux 9
  • AlmaLinux 8
  • AlmaLinux 9
  • Debian 11 (Bullseye)
  • Debian 12 (Bookworm)
  • Debian 13 (Trixie)
  • Ubuntu 22.04 LTS
  • Ubuntu 24.04 LTS
  • Fedora 42
  • Fedora 43

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml


# List of packages
privoxy_packages:
  - privoxy

# Privoxy service name
privoxy_service: privoxy

# privoxy ip
privoxy_ip: "{{ ansible_default_ipv4.address }}"

# privoxy port
privoxy_port: 8118

privoxy_settings:
  "listen-address": "{{ privoxy_ip }}:{{ privoxy_port }}"

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'privoxy'
  hosts: all
  become: 'yes'
  tasks:
    - name: Include role 'privoxy'
      ansible.builtin.include_role:
        name: privoxy