たまにしか実行しない事の備忘。
$ ssh-keygen -l -f ~/.ssh/id_rsa
2048 SHA256:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx foo@bar (RSA)
フィンガープリントをMD5形式で表示するには-E MD5を指定する
$ git config --global core.editor emacs |
UnixBench実行結果 | |
AWS EC2 t2.micro | |
(CPUクレジットが十分にたまっている状態で実行) | |
1CPU 1810.9 | |
---------------------------------------------------------------------- | |
# # # # # # # ##### ###### # # #### # # |
[user] | |
name = Foo Bar | |
email = foobar@example.com | |
[color] | |
ui = auto | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch |
- hosts: all | |
tasks: | |
- name: Execute uptime command | |
command: uptime | |
register: out | |
- debug: var=out.stdout_lines | |
- name: Execute 'apt-get update' | |
command: apt-get update | |
- name: Install basic commands | |
apt: name=git state=installed |