在法布里以sudo的身份执行

2024-06-24 13:27:35 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个命令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

Tags: thetoapplocalhostfordemoserviceetc
1条回答
网友
1楼 · 发布于 2024-06-24 13:27:35

这主要与faq中提到的有关,但是如果命令不返回0(unix标准是完全正确的),它将很快失败,除非您告诉它只发出警告。

相关问题 更多 >