Ansible TimeZoneの設定サンプル

環境
RHEL8.6
Ansible
Serverspec

構文
TimeZoneの設定

timezone:
  name: Asia/Tokyo

操作方法
1.playbook
定義サンプル

- name: set timezone to Asia/Tokyo
  timezone:
    name: Asia/Tokyo

2.Serverspecテストコード

describe command('date') do 
  it { should return_stdout /JST/ } 
end

 

Ansible

Posted by arkgame