mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:52:02 +02:00
Remove deprecated features:--manual-public-ip-logging-ok (#9991)
* Remove parameter '--manual-public-ip-logging-ok' * Update changelog with removal of '--manual-public-ip-logging-ok' flag
This commit is contained in:
@@ -96,7 +96,6 @@ def _prepare_args_env(certbot_args: List[str], directory_url: str, http_01_port:
|
|||||||
'--no-verify-ssl',
|
'--no-verify-ssl',
|
||||||
'--http-01-port', str(http_01_port),
|
'--http-01-port', str(http_01_port),
|
||||||
'--https-port', str(tls_alpn_01_port),
|
'--https-port', str(tls_alpn_01_port),
|
||||||
'--manual-public-ip-logging-ok',
|
|
||||||
'--config-dir', config_dir,
|
'--config-dir', config_dir,
|
||||||
'--work-dir', os.path.join(workspace, 'work'),
|
'--work-dir', os.path.join(workspace, 'work'),
|
||||||
'--logs-dir', os.path.join(workspace, 'logs'),
|
'--logs-dir', os.path.join(workspace, 'logs'),
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||||||
* The update_symlinks command was removed.
|
* The update_symlinks command was removed.
|
||||||
* The `csr_dir` and `key_dir` attributes on
|
* The `csr_dir` and `key_dir` attributes on
|
||||||
`certbot.configuration.NamespaceConfig` were removed.
|
`certbot.configuration.NamespaceConfig` were removed.
|
||||||
|
* The `--manual-public-ip-logging-ok` command line flag was removed.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|||||||
@@ -108,7 +108,6 @@ permitted by DNS standards.)
|
|||||||
help='Path or command to execute for the authentication script')
|
help='Path or command to execute for the authentication script')
|
||||||
add('cleanup-hook',
|
add('cleanup-hook',
|
||||||
help='Path or command to execute for the cleanup script')
|
help='Path or command to execute for the cleanup script')
|
||||||
util.add_deprecated_argument(add, 'public-ip-logging-ok', 0)
|
|
||||||
|
|
||||||
def prepare(self) -> None: # pylint: disable=missing-function-docstring
|
def prepare(self) -> None: # pylint: disable=missing-function-docstring
|
||||||
if self.config.noninteractive_mode and not self.conf('auth-hook'):
|
if self.config.noninteractive_mode and not self.conf('auth-hook'):
|
||||||
|
|||||||
Reference in New Issue
Block a user