คุณสามารถใช้ ansible เพื่อปรับใช้และเรียกใช้ chef-client
$ ansible -i hosts all -a 'chef-client'
ansible ติดตั้งได้ง่ายด้วย pip:
pip install ansible
ไฟล์คลังโฆษณาของคุณ (ในตัวอย่างชื่อ "โฮสต์") อาจมีลักษณะเช่นนี้:
[all]
host1.example.com ansible_user=root
host2.example.com ansible_user=root
host3.example.com ansibel_user=root
(แจ้งให้ทราบว่า "all" เป็นชื่อของการจัดกลุ่มในไฟล์การกำหนดค่าสำหรับตัวอย่างของเรา - นี่คือข้อ จำกัด และสามารถเป็นอะไรก็ได้ไฟล์รายการสินค้าของคุณยังสามารถรวมกลุ่มอื่น ๆ ได้เช่น [web_wervers], [database_servers], [chef_servers] ฯลฯ )
ดังนั้นอีกครั้งรวมทั้งหมดเข้าด้วยกัน:
> ansible -i hosts all -a 'chef-client'
หรืออาจจะ:
> ansible -i hosts all -a 'systemctl status'