5

コマンドラインに入力service app start-demoする必要があるコマンドがあります。sudo service app start-demo

私は使用sudo(service app start-demo)sudo(sudo service app start-demo)ましたが、それでも取得します

警告:'sudo service app start-demo'の実行中にsudo()でエラー(リターンコード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

これは、よくある質問でのこの言及に完全に関連していますが、コマンドが0(すべての製品のUNIX標準)を返さない場合も、警告のみを指示しない限り、失敗します。

于 2012-07-06T18:00:59.830 に答える