Ansible 操作 windowws 中文乱码问题解决办法
2021-04-13 08:28
标签:ansible windows 中文乱码 修改环境变量即可 设置环境变量为 utf-8 Ansible 操作 windowws 中文乱码问题解决办法 标签:ansible windows 中文乱码 原文地址:http://blog.51cto.com/babyshen/2110653ansible win_test -m win_shell -a 'Set-Item -Path env:PYTHONIOENCODING -Value "utf-8"; python d:\test\stat.py'
# playbook
---
- hosts: win_test
gather_facts: no
tasks:
- name: run Python script with utf-8 output
win_command: Python.exe d:\test\stat.py
environment:
PYTHONIOENCODING: utf-8
文章标题:Ansible 操作 windowws 中文乱码问题解决办法
文章链接:http://soscw.com/index.php/essay/75118.html