Salt中的runas参数

在Salt中的许多模块命令都有runas参数,比如cmd.run或cmd.script

以cmd.script命令举例,官方文档对于runas的描述如下:

runas
    The name of the user to run the command as

翻译过来为:运行该命令的用户名称(机翻)。
我理解的是:这条命令(或脚本)由哪个用户来执行。

比如:我有一个脚本 echo_test.sh,内容如下

echo "i am $USER"

使用cmd.script进行执行

salt minion-01 cmd.script salt://script/echo_test.sh

得到如下结果:

minion-01:
    ----------
    pid:
        63831
    retcode:
        0
    stderr:
    stdout:
        i am

查看下我这台机器的所有用户:

[root@localhost script]# cat /etc/passwd |cut -f 1 -d :
root
bin
daemon
...

我们使用其他用户执行。观察得到的结果:

# salt minion-01 cmd.script salt://script/echo_test.sh runas=root
minion-01:
    ----------
    pid:
        63908
    retcode:
        0
    stderr:
    stdout:
        i am root
        
# salt minion-01 cmd.script salt://script/echo_test.sh runas=bin
minion-01:
    ----------
    pid:
        63938
    retcode:
        0
    stderr:
    stdout:
        i am bin

# 使用不存在的用户进行执行,报错
# salt minion-01 cmd.script salt://script/echo_test.sh runas=aaa
minion-01:
    TypeError encountered executing cmd.script: an integer is required. See debug log for more info.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

iioSnail

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值