mirror of
https://github.com/de-it-krachten/ansible-role-privoxy
synced 2026-05-14 03:41:56 +00:00
No description
- Jinja 100%
# [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 ([ |
||
|---|---|---|
| .github/workflows | ||
| defaults | ||
| handlers | ||
| meta | ||
| molecule/default | ||
| tasks | ||
| templates | ||
| .ansible-lint | ||
| .cicd | ||
| .cicd.overwrite | ||
| .collections | ||
| .gitignore | ||
| .releaserc.yml | ||
| .roles | ||
| .yamllint | ||
| CHANGELOG.md | ||
| README.md | ||
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