Compare commits
No commits in common. "70f45e93b9802c111bba9bbf353293e94153cc14" and "bbb584bc39b6ce24667a757b9c39410b3a2cb47c" have entirely different histories.
70f45e93b9
...
bbb584bc39
460 changed files with 106 additions and 3538 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,15 +1,3 @@
|
||||||
## 0.2.0a20 (2026-05-04)
|
|
||||||
|
|
||||||
### Feat
|
|
||||||
|
|
||||||
- multi layers support
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- load indefine if no default value
|
|
||||||
- user-data-ansible can set a personalise source
|
|
||||||
- test if password is set in a forbidden file even if it also in legitimate file
|
|
||||||
|
|
||||||
## 0.2.0a19 (2026-01-21)
|
## 0.2.0a19 (2026-01-21)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.user_data_yaml"
|
name = "rougail.user_data_yaml"
|
||||||
version = "0.2.0a20"
|
version = "0.2.0a19"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail user_data yaml"
|
description = "Rougail user_data yaml"
|
||||||
|
|
|
||||||
|
|
@ -18,26 +18,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from ruamel.yaml import YAML
|
from ruamel.yaml import YAML
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from itertools import chain
|
|
||||||
|
|
||||||
from rougail.error import ExtensionError
|
from rougail.error import ExtensionError
|
||||||
from tiramisu.error import ValueOptionError, PropertiesOptionError, LeadershipError
|
from tiramisu.error import ValueOptionError, PropertiesOptionError, LeadershipError
|
||||||
from rougail.utils import undefined
|
|
||||||
from tiramisu import MetaConfig
|
|
||||||
|
|
||||||
from .i18n import _
|
from .i18n import _
|
||||||
from .__version__ import __version__
|
from .__version__ import __version__
|
||||||
|
|
||||||
|
|
||||||
class RougailUserDataYaml:
|
class RougailUserDataYaml:
|
||||||
has_several_layers = True
|
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
config,
|
config,
|
||||||
*,
|
*,
|
||||||
rougailconfig=None,
|
rougailconfig=None,
|
||||||
**kwargs,
|
|
||||||
) -> None:
|
) -> None:
|
||||||
if rougailconfig is None:
|
if rougailconfig is None:
|
||||||
from rougail import RougailConfig
|
from rougail import RougailConfig
|
||||||
|
|
@ -51,22 +45,11 @@ class RougailUserDataYaml:
|
||||||
if "yaml" not in user_data:
|
if "yaml" not in user_data:
|
||||||
raise ExtensionError(_("yaml is not set in step.user_data"))
|
raise ExtensionError(_("yaml is not set in step.user_data"))
|
||||||
self.rougailconfig = rougailconfig
|
self.rougailconfig = rougailconfig
|
||||||
self.filenames = []
|
self.filenames = self.rougailconfig["yaml.filename"]
|
||||||
for filename in self.rougailconfig["yaml.filename"]:
|
|
||||||
filename = Path(filename)
|
|
||||||
if filename.is_file():
|
|
||||||
self.filenames.append(filename)
|
|
||||||
else:
|
|
||||||
for name in sorted(chain(filename.glob('*.yml'), filename.glob('*.yaml'))):
|
|
||||||
self.filenames.append(name)
|
|
||||||
|
|
||||||
self.file_with_secrets = self.rougailconfig["yaml.file_with_secrets"]
|
self.file_with_secrets = self.rougailconfig["yaml.file_with_secrets"]
|
||||||
|
self.config = config
|
||||||
self.errors = []
|
self.errors = []
|
||||||
self.warnings = []
|
self.warnings = []
|
||||||
self.source = _('the YAML file "{0}"')
|
|
||||||
|
|
||||||
def count_layers(self):
|
|
||||||
return len(self.filenames)
|
|
||||||
|
|
||||||
def run(
|
def run(
|
||||||
self,
|
self,
|
||||||
|
|
@ -76,6 +59,12 @@ class RougailUserDataYaml:
|
||||||
if self.file_with_secrets == "last":
|
if self.file_with_secrets == "last":
|
||||||
last_filename_idx = len(self.filenames) - 1
|
last_filename_idx = len(self.filenames) - 1
|
||||||
for idx, filename in enumerate(self.filenames):
|
for idx, filename in enumerate(self.filenames):
|
||||||
|
filename = Path(filename)
|
||||||
|
if filename.is_file():
|
||||||
|
filenames = [filename]
|
||||||
|
else:
|
||||||
|
filenames = list(filename.glob('*.yml')) + list(filename.glob('*.yaml'))
|
||||||
|
for filename in sorted(filenames):
|
||||||
file_values = self.open(filename)
|
file_values = self.open(filename)
|
||||||
if not file_values:
|
if not file_values:
|
||||||
continue
|
continue
|
||||||
|
|
@ -103,7 +92,7 @@ class RougailUserDataYaml:
|
||||||
allow_secrets_variables = True
|
allow_secrets_variables = True
|
||||||
user_data.append(
|
user_data.append(
|
||||||
{
|
{
|
||||||
"source": self.source.format(filename),
|
"source": _('the YAML file "{0}"').format(filename),
|
||||||
"errors": self.errors,
|
"errors": self.errors,
|
||||||
"warnings": self.warnings,
|
"warnings": self.warnings,
|
||||||
"values": values,
|
"values": values,
|
||||||
|
|
@ -147,7 +136,7 @@ class RougailUserDataYaml:
|
||||||
for val in value:
|
for val in value:
|
||||||
for key in keys:
|
for key in keys:
|
||||||
values.setdefault(path + "." + key, []).append(
|
values.setdefault(path + "." + key, []).append(
|
||||||
val.get(key, undefined)
|
val.get(key, None)
|
||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.2.0a20"
|
__version__ = "0.2.0a19"
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"the value \"1\" is an invalid string, it's not a string, it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/001/config/03/config.yml\"",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "foo"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "foo"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "foo"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "foo"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"the value \"foo\" is an invalid choice, only \"Auto-detect proxy settings for this network\", \"Automatic proxy configuration URL\", \"Manual proxy configuration\", \"No proxy\" and \"Use system proxy settings\" are allowed, it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/010/config/04/config.yml\"",
|
|
||||||
"proxy_mode",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net"
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"the value \"192.168.0.1\" is an invalid domain name, must not be an IP, it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/030/config/02/config.yml\"",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"the value \"not a valid domain name.com\" is an invalid domain name, must start with lowercase characters followed by lowercase characters, number, \"-\" and \".\" characters are allowed, it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/030/config/03/config.yml\"",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "192.168.0.1"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "192.168.0.1"
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
[
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"mandatory variable but has no value",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"the value \"not a valid domain name.com\" is an invalid domain name, could be a IP, otherwise must start with lowercase characters followed by lowercase characters, number, \"-\" and \".\" characters are allowed, it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/031/config/03/config.yml\"",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080"
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080"
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "3128"
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "3128"
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080"
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"the value \"100000\" is an invalid port, must be between 1 and 65535, it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/032/config/03/config.yml\"",
|
|
||||||
"manual.http_proxy.port",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080",
|
|
||||||
"manual.use_for_https": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080",
|
|
||||||
"manual.use_for_https": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080",
|
|
||||||
"manual.use_for_https": false
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy",
|
|
||||||
"manual.http_proxy.address": "example.net",
|
|
||||||
"manual.http_proxy.port": "8080",
|
|
||||||
"manual.use_for_https": false
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "http.proxy.net",
|
|
||||||
"manual.http_proxy.port": "3128",
|
|
||||||
"manual.use_for_https": false,
|
|
||||||
"manual.https_proxy.address": "https.proxy.net",
|
|
||||||
"manual.https_proxy.port": "8080"
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "http.proxy.net",
|
|
||||||
"manual.http_proxy.port": "3128",
|
|
||||||
"manual.use_for_https": false,
|
|
||||||
"manual.https_proxy.address": "https.proxy.net",
|
|
||||||
"manual.https_proxy.port": "8080"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "http.proxy.net",
|
|
||||||
"manual.http_proxy.port": "3128",
|
|
||||||
"manual.use_for_https": false,
|
|
||||||
"manual.https_proxy.address": "https.proxy.net",
|
|
||||||
"manual.https_proxy.port": "3128"
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "http.proxy.net",
|
|
||||||
"manual.http_proxy.port": "3128",
|
|
||||||
"manual.use_for_https": false,
|
|
||||||
"manual.https_proxy.address": "https.proxy.net",
|
|
||||||
"manual.https_proxy.port": "3128"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration"
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": []
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"errors": [],
|
|
||||||
"warnings": [
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"family \"manual\" (Manual proxy configuration) has property disabled, so cannot access to \"address\" (HTTP address), it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/050/config/02/config.yml\"",
|
|
||||||
"manual.http_proxy.address",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"family \"manual\" (Manual proxy configuration) has property disabled, so cannot access to \"port\" (HTTP Port), it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/050/config/02/config.yml\"",
|
|
||||||
"manual.http_proxy.port",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"family \"manual\" (Manual proxy configuration) has property disabled, so cannot access to \"use_for_https\" (Also use this proxy for HTTPS), it will be ignored when loading from the YAML file \"../rougail-tutorials_builder/examples/050/config/02/config.yml\"",
|
|
||||||
"manual.use_for_https",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "No proxy"
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"proxy_mode": "Manual proxy configuration",
|
|
||||||
"manual.http_proxy.address": "http.proxy.net",
|
|
||||||
"manual.http_proxy.port": "3128",
|
|
||||||
"manual.use_for_https": false,
|
|
||||||
"manual.https_proxy.address": "http.proxy.net",
|
|
||||||
"manual.https_proxy.port": "3128"
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue