Ansible任务不能在某个Vagrant盒子上有sudo_user(便当)

前端之家收集整理的这篇文章主要介绍了Ansible任务不能在某个Vagrant盒子上有sudo_user(便当)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Vagrant框(ubuntu 12.04 chefless) http://opscode.github.io/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.

我需要创建自己的盒子吗?

=== / 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

解决方法

可能在这里迟到了,但我今天遇到了同样的错误,并解决了它
username ALL=(ALL) NOPASSWD: ALL

你的sudo组在括号中错过了这个ALL

原文链接:https://www.f2er.com/css/242377.html

猜你在找的CSS相关文章