diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-23 11:48:00 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-23 11:49:46 +0200 |
commit | 1f6746c44c5349a35847abfb410d3826a4e7ca99 (patch) | |
tree | d67f4c99a994bb4154256593683fadd87f43957b /src/conf_mode/containers.py | |
parent | 31c97abb63c7223e224c399a7d474f012ecf8a45 (diff) | |
download | vyos-1x-1f6746c44c5349a35847abfb410d3826a4e7ca99.tar.gz vyos-1x-1f6746c44c5349a35847abfb410d3826a4e7ca99.zip |
containers: T2216: xml: impove help string for address command
Diffstat (limited to 'src/conf_mode/containers.py')
-rwxr-xr-x | src/conf_mode/containers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conf_mode/containers.py b/src/conf_mode/containers.py index b573df889..23f17ab55 100755 --- a/src/conf_mode/containers.py +++ b/src/conf_mode/containers.py @@ -124,7 +124,8 @@ def verify(container): # We can not use the first IP address of a network prefix as this is used by podman if ip_address(address) == ip_network(network)[1]: - raise ConfigError(f'Address "{address}" reserved for the container engine!') + raise ConfigError(f'IP address "{address}" can not be used for a container, '\ + 'reserved for the container engine!') if 'environment' in container_config: for var, cfg in container_config['environment'].items(): |