mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Deprecate pushover returner, remove warnings
Warnings will be automated.
This commit is contained in:
parent
3106812cd0
commit
d7f20320d5
3 changed files with 6 additions and 15 deletions
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue