5

我有一个命令service app start-demo需要我sudo service app start-demo在命令行中输入。

我用过sudo(service app start-demo)sudo(sudo service app start-demo)但我仍然得到

警告:sudo() 在执行 'sudo service app start-demo' 时遇到错误(返回码 1)

我在终端中将其作为命令行执行没有问题。

我不确定是否SADeprecationWarning:算作面料失败?

谢谢。


user@box:/var/lib/app$ fab kickstart
You are installing prereqs..........
### Install Prereqs for Populate ###
No hosts found. Please specify (single) host string for connection: localhost
[localhost] Login password: 

### I am starting demo ###
[localhost] sudo: sudo service app start-demo
[localhost] out: Starting demo

Fatal error: sudo() encountered an error (return code 1) while executing 'sudo service app start-demo'

Aborting.
Disconnecting from localhost... done.

编码

def pserve():
    print '### I am starting demo ###'
    #with settings(warn_only=True):
    sudo('sudo service app start-demo')
    #sudo('service app start-demo')

任何一个sudo命令都会失败。


/etc/sudoers

# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#

Defaults    env_reset

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL) ALL

# Allow members of group sudo to execute any command after they have
# provided their password
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL
#
#includedir /etc/sudoers.d

# Members of the admin group may gain root privileges
%admin ALL=(ALL) NOPASSWD:ALL
4

1 回答 1

3

这与faq中提到的这一点密切相关,但如果命令不返回 0(所有好的 unix 标准),它会快速失败,除非你告诉它只发出警告。

于 2012-07-06T18:00:59.830 回答