You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
Hello, I am trying to deploying BigBlueButton using Ansible Server. I made a YML script for that but I stuck in a problem, when the module of installing BigBlueButton ha been started it stuck. It didn't show any error only stuck on this module. I found that while the installing of BigBlueButton a prompt screen will ask you for accept the license. So for this I used following module-
But it still stuck on that module. Any help would be appreciated
Thank you
Dick Visser
unread,
Mar 31, 2017, 4:21:51 AM3/31/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
You are using the command module to run apt-get, which triggers a
license prompt.
This is caused by apt-get using the 'dialog' frontend.
Instead you should use the apt-get module
(http://docs.ansible.com/ansible/apt_module.html).
This way apt-get will be run in 'noninteractive' mode, which *should*
skip the license question.
But YMMV as it's up to the package creator to actually implement it that way.