我是 ansible 的新手,正在尝试编写一本新的剧本
a)某个文件夹 b)清理环境 c)提取代码 d)并构建它
这是我的剧本,非常感谢您的帮助。:)
- name: Shell examples
hosts: all
tasks:
- name: mulitline shell
shell: |
cd /home/ec2-user/node
echo -e "\n pulling the code in here" 'pwd'
git clean -d -f .
git pull
npm install