Deprecate pushover returner, remove warnings

Warnings will be automated.
This commit is contained in:
jeanluc 2023-11-16 13:09:54 +01:00 committed by Pedro Algarvio
parent 3106812cd0
commit d7f20320d5
3 changed files with 6 additions and 15 deletions

View file

@ -1,11 +1,6 @@
"""
Module for sending messages to Pushover (https://www.pushover.net)
.. warning::
This module will be removed from Salt in version 3009.0 in favor of
the `saltext.pushover Salt Extension
<https://github.com/salt-extensions/saltext-pushover>`_
.. versionadded:: 2016.3.0
:configuration: This module can be used by either passing an api key and version

View file

@ -1,11 +1,6 @@
"""
Return salt data via pushover (http://www.pushover.net)
.. warning::
This module will be removed from Salt in version 3009.0 in favor of
the `saltext.pushover Salt Extension
<https://github.com/salt-extensions/saltext-pushover>`_
.. versionadded:: 2016.3.0
The following fields can be set in the minion conf file::
@ -96,6 +91,12 @@ log = logging.getLogger(__name__)
__virtualname__ = "pushover"
__deprecated__ = (
3009,
"pushover",
"https://github.com/saltstack/saltext-pushover",
)
def _get_options(ret=None):
"""

View file

@ -2,11 +2,6 @@
Send a message to PushOver
==========================
.. warning::
This module will be removed from Salt in version 3009.0 in favor of
the `saltext.pushover Salt Extension
<https://github.com/salt-extensions/saltext-pushover>`_
This state is useful for sending messages to PushOver during state runs.
.. versionadded:: 2015.5.0