gpt4 book ai didi

ansible - 如何获得更新路径

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

有什么办法吗:

export PATH=$PATH:/new/path/to/bin

在 Ansible 中,如果可能,不使用 shell 或命令。

我试过了

 - name: Add another bin dir to system-wide $PATH.
copy:
dest: /etc/profile.d/custom-path.sh
content: 'PATH=$PATH:{{ my_custom_path_var }}'

我从: https://www.jeffgeerling.com/comment/reply/2799

但它不起作用,因为 PATH 导致:

\$PATH:/new/path/to/bin

打破系统的 PATH。

谢谢!

最佳答案

使用 shell 或命令将是:

  - name: Add pm2 to PATH
shell: echo "PATH=$PATH:/new/path/to/bin" > /etc/environment
become: true

但我仍然更喜欢不使用 shell/command 的选项。

关于ansible - 如何获得更新路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52958874/

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