ansible切换目录
Posted effortsing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible切换目录相关的知识,希望对你有一定的参考价值。
切换目录并且创建文件
1、使用shell模块操作
[[email protected] ~]# ansible k8s -m shell -a "chdir=/rubbish touch test.conf"
2、使用command操作
[[email protected] ~]# ansible k8s -m command -a "chdir=/rubbish touch test.conf"
以上是关于ansible切换目录的主要内容,如果未能解决你的问题,请参考以下文章
ImportError: No module named ansible.errors
Ansible 学习总结—— Ansible 常用模块与 playbook 实例讲解