gpt4 book ai didi

makefile - Ansible 配置和制作

转载 作者:行者123 更新时间:2023-12-02 01:33:39 24 4
gpt4 key购买 nike

配置和不工作作为单独的步骤。

- name: configure
command: ./configure --with-python=/usr/local/bin/python2.7
args:
chdir: "/usr/src/mod_wsgi-{{ mod_wsgi_version }}"
- name: make
command: make
args:
chdir: "/usr/src/mod_wsgi-{{ mod_wsgi_version }}"

但是,当我将它们组合在一个命令行中时,它们工作正常。

- name: configure and make
command: ./configure --with-python=/usr/local/bin/python2.7; make
args:
chdir: "/usr/src/mod_wsgi-{{ mod_wsgi_version }}"

我的理解是 configure 正在构建一个 makefile,而不是在环境中做一些神奇的事情。我错了吗?

编辑:我得到一个线索,python 无法正常运行,因为它需要一个环境变量:LD_LIBRARY_PATH。

我找到了根本原因。当我安装 python 时,我编辑/etc/profile 但这被 ansible 登录忽略了。因此,未设置 LD_LIBRARY_PATH。我已经更新了 python 安装程序手册以将 shell 脚本添加到/etc/profile.d/

最佳答案

我找到了根本原因。当我安装 python 时,我编辑了 /etc/profile 但这被 ansible 登录忽略了。因此 LD_LIBRARY_PATH 没有设置。我已经更新了 python 安装程序剧本,将 shell 脚本添加到 /etc/profile.d/

令人惊讶的是,配置步骤没有出错,即使它未能正确运行 python。可能是因为配置脚本没有返回非零值。

关于makefile - Ansible 配置和制作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32614716/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com