Skip to content

Instantly share code, notes, and snippets.

@shirou
Last active December 21, 2015 05:28
Show Gist options
  • Save shirou/6256898 to your computer and use it in GitHub Desktop.
Save shirou/6256898 to your computer and use it in GitHub Desktop.
ansible日本語テスト
(ansible)%ansible-playbook -i host.ini test.yml [~/tmp/ansible]
__________________
< PLAY [localhost] >
------------------
\ ,__,
\ (oo)____
(__) )\
||--|| *
_________________
< GATHERING FACTS >
-----------------
\ ,__,
\ (oo)____
(__) )\
||--|| *
ok: [localhost]
__________________________
< TASK: テストですよ >
--------------------------
\ ,__,
\ (oo)____
(__) )\
||--|| *
ok: [localhost] => {"msg": "\u65e5\u672c\u8a9e\u3069\u3046\u3067\u3059\u304b\u3002\u3042\u3001\u3053\u306e\u90e8\u5206\u306f\u5316\u3051\u307e\u3059\u3088"}
____________
< PLAY RECAP >
------------
\ ,__,
\ (oo)____
(__) )\
||--|| *
localhost : ok=2 changed=0 unreachable=0 failed=0
---
- hosts: localhost
user: shirou
sudo: no
tasks:
- name: テストですよ
debug: msg="日本語どうですか。あ、この部分は化けますよ"
@voluntas
Copy link

---
- hosts: localhost
  connection: local
  user: shirou
  sudo: no
  tasks:
  - name: テストですよ
    debug: msg="日本語どうですか。あ、この部分は化けますよ"
ansible-playbook -i host.ini test.yml

PLAY [localhost] **************************************************************

GATHERING FACTS ***************************************************************
ok: [localhost]

TASK: [テストですよ] ****************************************************************
ok: [localhost] => {"msg": "\u65e5\u672c\u8a9e\u3069\u3046\u3067\u3059\u304b\u3002\u3042\u3001\u3053\u306e\u90e8\u5206\u306f\u5316\u3051\u307e\u3059\u3088"}

PLAY RECAP ********************************************************************
localhost                  : ok=2    changed=0    unreachable=0    failed=0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment