Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Push dep neut #60774

Merged
merged 8 commits into from
Aug 24, 2021
9 changes: 8 additions & 1 deletion salt/utils/openstack/neutron.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,14 @@ def __init__(
"""
salt.utils.versions.warn_until(
"Sulfur",
"The neutron module has been deprecated and will be removed in {version}. "
"The neutron module has been deprecated and will be removed in {version}.\n"
"This includes\n"
"* salt.utils.openstack.neutron\n"
"* salt.modules.neutron\n"
"* salt.pillar.neutron\n"
"Please migrate to neutronng.\n"
"salt.modules.neutron -> salt.modules.neutronng\n"
"salt.pillar.neutron -> salt.pillar.neutronng\n"
"Please update to using the neutronng module",
)
if not HAS_NEUTRON:
Expand Down