2024-10-23 10:58:08 +02:00
- [Summary ](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/branch/1.1/README.md )
2024-10-23 10:58:20 +02:00
- [[tutorial 012] Conditional desactived family](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_012/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_012~1..v1.1_012))
2024-10-23 10:58:08 +02:00
2024-10-23 10:58:20 +02:00
# [tutorial 013] A sub family
2024-10-23 10:58:08 +02:00
2024-10-23 10:58:20 +02:00
[View the diff ](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_013~1..v1.1_013 )
2024-10-23 10:58:08 +02:00
2024-10-23 10:58:06 +02:00
## Screenshot
< img src = "firefox.png" width = 50% height = 50% alt = "Firefox Proxy setting" / >
## Structure
2024-10-23 10:58:08 +02:00
### firefox/00-proxy.yml
```yml
---
2024-10-23 10:58:10 +02:00
proxy_mode:
2024-10-23 10:58:11 +02:00
description: Configure Proxy Access to the Internet
2024-10-23 10:58:14 +02:00
choices:
- No proxy
- Auto-detect proxy settings for this network
- Use system proxy settings
- Manual proxy configuration
- Automatic proxy configuration URL
2024-10-23 10:58:13 +02:00
default: No proxy
2024-10-23 10:58:08 +02:00
```
2024-10-23 10:58:17 +02:00
### firefox/10-manual.yml
2024-10-23 10:58:10 +02:00
```yml
---
2024-10-23 10:58:17 +02:00
manual:
description: Manual proxy configuration
type: family
2024-10-23 10:58:18 +02:00
disabled:
variable: proxy_mode
when_not: 'Manual proxy configuration'
2024-10-23 10:58:10 +02:00
2024-10-23 10:58:20 +02:00
http_proxy:
description: HTTP Proxy
type: family
2024-10-23 10:58:10 +02:00
```
2024-10-23 10:58:17 +02:00
### Generated documentation
2024-10-23 10:58:10 +02:00
```console
2024-10-23 10:58:17 +02:00
foo@bar:~$ rougail -v 1.1 -m firefox/ -o doc -do github
2024-10-23 10:58:10 +02:00
```
2024-10-23 10:58:17 +02:00
### Variables
2024-10-23 10:58:10 +02:00
2024-10-23 10:58:17 +02:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **proxy_mode** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | Configure Proxy Access to the Internet.< br /> **Choices**: < br /> - No proxy ← (default)< br /> - Auto-detect proxy settings for this network< br /> - Use system proxy settings< br /> - Manual proxy configuration< br /> - Automatic proxy configuration URL |
2024-10-23 10:58:10 +02:00
2024-10-23 10:58:20 +02:00
- [[tutorial 014] Family in "shorthand" mode](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_014/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_014~1..v1.1_014))