def _execChild(self, path, settingUID, uid, gid,
command, args, environment):
if path:
os.chdir(path)
# set the UID before I actually exec the process
if settingUID:
switchUID(uid, gid)
os.execvpe(command, args, environment)
评论列表
文章目录