Chef Resource들이 이상한 순서로 동작할 때 The chef-client Run chef client 실행 단계에서 크데 2가지 단계가 중요 합니다. Compile Phase 모든 언어 및 특히 ruby에 해당하는 Resource Loading Attributes Loading Definitions Loading Loading 된 Resources를 모두 실행 순서데로 정렬 Execution(Converge) Phase Compile 단계에서 정리된 모든 사항을 실행 순서 데로 처리 Resource 외부에 정의되어 있는 항목들의 실행 순서 example.rb package 'apache2' do action :install end Chef::Log.info("Apache2 installed") ..