use the full list of available campfire sounds
From the list found [here](http://www.emoji-cheat-sheet.com/)
This commit is contained in:
parent
06cc6ec6eb
commit
65e0bffa8e
1 changed files with 22 additions and 12 deletions
|
@ -31,11 +31,15 @@ options:
|
|||
description:
|
||||
- Send a notification sound before the message.
|
||||
required: false
|
||||
choices: ["56k", "bueller", "crickets", "dangerzone", "deeper",
|
||||
"drama", "greatjob", "horn", "horror" , "inconceivable",
|
||||
"live", "loggins", "noooo", "nyan", "ohmy", "ohyeah",
|
||||
"pushit", "rimshot", "sax", "secret", "tada", "tmyk",
|
||||
"trombone", "vuvuzela", "yeah", "yodel"]
|
||||
choices: ["56k", "bell", "bezos", "bueller", "clowntown",
|
||||
"cottoneyejoe", "crickets", "dadgummit", "dangerzone",
|
||||
"danielsan", "deeper", "drama", "greatjob", "greyjoy",
|
||||
"guarantee", "heygirl", "horn", "horror",
|
||||
"inconceivable", "live", "loggins", "makeitso", "noooo",
|
||||
"nyan", "ohmy", "ohyeah", "pushit", "rimshot",
|
||||
"rollout", "rumble", "sax", "secret", "sexyback",
|
||||
"story", "tada", "tmyk", "trololo", "trombone", "unix",
|
||||
"vuvuzela", "what", "whoomp", "yeah", "yodel"]
|
||||
|
||||
# informational: requirements for nodes
|
||||
requirements: [ urllib2, cgi ]
|
||||
|
@ -69,14 +73,20 @@ def main():
|
|||
room=dict(required=True),
|
||||
msg=dict(required=True),
|
||||
notify=dict(required=False,
|
||||
choices=["56k", "bueller", "crickets",
|
||||
"dangerzone", "deeper", "drama",
|
||||
"greatjob", "horn", "horror",
|
||||
choices=["56k", "bell", "bezos", "bueller",
|
||||
"clowntown", "cottoneyejoe",
|
||||
"crickets", "dadgummit", "dangerzone",
|
||||
"danielsan", "deeper", "drama",
|
||||
"greatjob", "greyjoy", "guarantee",
|
||||
"heygirl", "horn", "horror",
|
||||
"inconceivable", "live", "loggins",
|
||||
"noooo", "nyan", "ohmy", "ohyeah",
|
||||
"pushit", "rimshot", "sax", "secret",
|
||||
"tada", "tmyk", "trombone", "vuvuzela",
|
||||
"yeah", "yodel"]),
|
||||
"makeitso", "noooo", "nyan", "ohmy",
|
||||
"ohyeah", "pushit", "rimshot",
|
||||
"rollout", "rumble", "sax", "secret",
|
||||
"sexyback", "story", "tada", "tmyk",
|
||||
"trololo", "trombone", "unix",
|
||||
"vuvuzela", "what", "whoomp", "yeah",
|
||||
"yodel"]),
|
||||
),
|
||||
supports_check_mode=False
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue