irc: add version_added to new option nick
This commit is contained in:
parent
639902ff20
commit
5fec1e3994
1 changed files with 6 additions and 5 deletions
|
@ -42,6 +42,7 @@ options:
|
||||||
- Nickname to send the message from. May be shortened, depending on server's NICKLEN setting.
|
- Nickname to send the message from. May be shortened, depending on server's NICKLEN setting.
|
||||||
required: false
|
required: false
|
||||||
default: ansible
|
default: ansible
|
||||||
|
version_added: "2.0"
|
||||||
msg:
|
msg:
|
||||||
description:
|
description:
|
||||||
- The message body.
|
- The message body.
|
||||||
|
@ -52,7 +53,7 @@ options:
|
||||||
- Set the channel topic
|
- Set the channel topic
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
version_added: 2.0
|
version_added: "2.0"
|
||||||
color:
|
color:
|
||||||
description:
|
description:
|
||||||
- Text color for the message. ("none" is a valid option in 1.6 or later, in 1.6 and prior, the default color is black, not "none").
|
- Text color for the message. ("none" is a valid option in 1.6 or later, in 1.6 and prior, the default color is black, not "none").
|
||||||
|
@ -68,12 +69,12 @@ options:
|
||||||
- A list of nicknames to send the message to. One of nick_to or channel needs to be set. When both are defined, the message will be sent to both of them.
|
- A list of nicknames to send the message to. One of nick_to or channel needs to be set. When both are defined, the message will be sent to both of them.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
version_added: 2.0
|
version_added: "2.0"
|
||||||
key:
|
key:
|
||||||
description:
|
description:
|
||||||
- Channel key
|
- Channel key
|
||||||
required: false
|
required: false
|
||||||
version_added: 1.7
|
version_added: "1.7"
|
||||||
passwd:
|
passwd:
|
||||||
description:
|
description:
|
||||||
- Server password
|
- Server password
|
||||||
|
@ -83,12 +84,12 @@ options:
|
||||||
- Timeout to use while waiting for successful registration and join
|
- Timeout to use while waiting for successful registration and join
|
||||||
messages, this is to prevent an endless loop
|
messages, this is to prevent an endless loop
|
||||||
default: 30
|
default: 30
|
||||||
version_added: 1.5
|
version_added: "1.5"
|
||||||
use_ssl:
|
use_ssl:
|
||||||
description:
|
description:
|
||||||
- Designates whether TLS/SSL should be used when connecting to the IRC server
|
- Designates whether TLS/SSL should be used when connecting to the IRC server
|
||||||
default: False
|
default: False
|
||||||
version_added: 1.8
|
version_added: "1.8"
|
||||||
|
|
||||||
# informational: requirements for nodes
|
# informational: requirements for nodes
|
||||||
requirements: [ socket ]
|
requirements: [ socket ]
|
||||||
|
|
Loading…
Reference in a new issue