Merge pull request #7710 from brad/zounds

use the full list of available campfire sounds
This commit is contained in:
Michael DeHaan 2014-07-24 09:35:27 -04:00
commit 3a902e2b5b

View file

@ -31,11 +31,15 @@ options:
description: description:
- Send a notification sound before the message. - Send a notification sound before the message.
required: false required: false
choices: ["56k", "bueller", "crickets", "dangerzone", "deeper", choices: ["56k", "bell", "bezos", "bueller", "clowntown",
"drama", "greatjob", "horn", "horror" , "inconceivable", "cottoneyejoe", "crickets", "dadgummit", "dangerzone",
"live", "loggins", "noooo", "nyan", "ohmy", "ohyeah", "danielsan", "deeper", "drama", "greatjob", "greyjoy",
"pushit", "rimshot", "sax", "secret", "tada", "tmyk", "guarantee", "heygirl", "horn", "horror",
"trombone", "vuvuzela", "yeah", "yodel"] "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 # informational: requirements for nodes
requirements: [ urllib2, cgi ] requirements: [ urllib2, cgi ]
@ -69,14 +73,20 @@ def main():
room=dict(required=True), room=dict(required=True),
msg=dict(required=True), msg=dict(required=True),
notify=dict(required=False, notify=dict(required=False,
choices=["56k", "bueller", "crickets", choices=["56k", "bell", "bezos", "bueller",
"dangerzone", "deeper", "drama", "clowntown", "cottoneyejoe",
"greatjob", "horn", "horror", "crickets", "dadgummit", "dangerzone",
"danielsan", "deeper", "drama",
"greatjob", "greyjoy", "guarantee",
"heygirl", "horn", "horror",
"inconceivable", "live", "loggins", "inconceivable", "live", "loggins",
"noooo", "nyan", "ohmy", "ohyeah", "makeitso", "noooo", "nyan", "ohmy",
"pushit", "rimshot", "sax", "secret", "ohyeah", "pushit", "rimshot",
"tada", "tmyk", "trombone", "vuvuzela", "rollout", "rumble", "sax", "secret",
"yeah", "yodel"]), "sexyback", "story", "tada", "tmyk",
"trololo", "trombone", "unix",
"vuvuzela", "what", "whoomp", "yeah",
"yodel"]),
), ),
supports_check_mode=False supports_check_mode=False
) )