Optional tasks cannot have sudo_user in a specific Vagrant box (bento)

The following error is executed in the Vagrant window (ubuntu 12.04 chefless) http://opscode.imtqy.com/bento/

- name: ensure database is created postgresql_db: name={{dbname}} sudo_user: postgres 

Fd

 failed: [192.168.78.8] => {"failed": true, "parsed": false} invalid output was: Sorry, user vagrant is not allowed to execute '/bin/sh -c echo SUDO-SUCCESS-lalargtagydzinzenmftocwaiucrmxuk; /usr/bin/python /tmp/ansible-1392568385.89-150322815243790/postgresql_db' as postgres on cogol-dev. 

Do I need to create my own box?

=== contents of / etc / sudoers

 Defaults env_reset Defaults exempt_group=sudo Defaults mail_badpass Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" # Host alias specification # User alias specification # Cmnd alias specification # User privilege specification root ALL=(ALL:ALL) ALL # Members of the admin group may gain root privileges %admin ALL=(ALL) ALL # Allow members of group sudo to execute any command %sudo ALL=NOPASSWD:ALL # See sudoers(5) for more information on "#include" directives: #includedir /etc/sudoers.d 
+6
source share
2 answers

It's probably late here, but today I came across the same error and resolved it with

 username ALL=(ALL) NOPASSWD: ALL 

your sudo group skipped this ALL in parentheses

+6
source

Pretty accurately, you should also add sudo: yes below / above the sudo_user parameter.

0
source

All Articles