在Ansible中从bash命令的命令输出设置环境变量

前端之家收集整理的这篇文章主要介绍了在Ansible中从bash命令的命令输出设置环境变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在Ansible中将 shell命令的输出设置为环境变量.

我做了以下工作来实现它:

- name: Copy content of config.json into variable
  shell:  /bin/bash -l -c "cat /storage/config.json"
  register: copy_config
  tags: something

- name: set config
  shell: "echo $TEMP_CONFIG"
  environment:
    TEMP_CONFIG: "{{copy_config}}"
  tags: something

但是在ansible运行之后,当我运行以下命令时:

echo ${TEMP_CONFIG}

在我的终端,它给出了一个空的结果.

任何帮助,将不胜感激.

至少有两个问题:

>您应该将copy_config.stdout作为变量传递

- name: set config
  shell: "echo $TEMP_CONFIG"
  environment:
    TEMP_CONFIG: "{{copy_config.stdout}}"
  tags: something

>您需要注册上述任务的结果,然后再次打印标准输出,所以:

- name: set config
  shell: "echo $TEMP_CONFIG"
  environment:
    TEMP_CONFIG: "{{copy_config.stdout}}"
  tags: something
  register: shell_echo

- debug:
    var: shell_echo.stdout

>您永远无法以这种方式将变量传递给不相关的流程.因此,除非您在rc文件注册结果(如〜/ .bash_profile,如果您使用Bash,这是在交互式登录获取的),否则其他shell进程将无法看到TEMP_CONFIG的值.这就是系统的工作原理.

猜你在找的Bash相关文章