banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

CentOS使用run-as-user.sh處理運行環境的使用者不同問題

很多時候,部署運行環境的使用者和實際運行的使用者是不同的,當因為環境限制,當時碰到以下場景的時候,就比較麻煩了,需要編寫一個腳本來實現運行。 1. 不能使用 su 和 sudo 時 2. 使用者沒有 shell 不支持 login 時,比如 nobody,服務使用者 3. 使用 Docker 等容器時 4. 使用 SSH 遠程執行命令,但是不能使用登陸使用者

實現前提 1. 需要運行使用者的使用者名和使用者分組以及密碼 2. 需要運行使用者的 PUID 和 PGID

使用前請修改程式碼中實際運行的使用者名,且使用者存在

./run-as-user.sh 命令 命令參數

#!/bin/sh

##############################################################################

If a PUID/PGID enviroment variable exists, use those values for the `uid`#

and `gid` when executing scripts, otherwise change the dev user's uid and#

gid to match the user that owns the project directory and run a command as#

that user. If a ~/.ssh directory exists and it's not owned by root then#

switch and run as that user instead in order to take advantage of public key#

authentication.#

##############################################################################

stat_dir="/app"
if [ -d "/home/dev/.ssh" ] && [ "0" != "$(stat -c '%g' /home/dev/.ssh)" ] && [ "0" != "$(stat -c '%u' /home/dev/.ssh)" ]; then
stat_dir="/home/dev/.ssh"
fi

if the PUID environment variable exists, assume that is the preferred user id,#

otherwise use the $stat_dir#

if [ "" != "$PUID" ]; then
uid=$PUID
else
uid=$(stat -c '%u' $stat_dir)
fi

if the PGID environment variable exists, assume that is the preferred group id,#

otherwise use the $stat_dir#

if [ "" != "$PGID" ]; then
gid=$PGID
else
gid=$(stat -c '%g' $stat_dir)
fi

Ensure the correct user id is available in the sudoers file (if the#

specified UID already existed in the image)#

id -nu $uid > /dev/null 2>&1
if [ 0 -eq $? ]; then
echo "$(id -nu $uid) ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
fi

update the dev user with the specified UID/GID values#

groupmod -g $gid -o dev > /dev/null 2>&1
usermod -u $uid -o dev > /dev/null 2>&1
chown -R dev ~dev/ > /dev/null 2>&1

prevent circular calls to this script (legacy support)#

cmd="$@"
cmda=`expr "x$cmd" : "x.\{0\}\(.\{0,12\}\)"`
cmdb=`expr "x$cmd" : "x.\{1\}\(.\{1,12\}\)"`

while [ "/run-as-user" = "${cmda}" ] || [ "/run-as-user" = "${cmdb}" ]; do
shift
cmd="$@"
done

sudo -u dev $@

載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。