13.3.4 변경된 작업 되돌리기
새로운 작업을 위해 가지를 분리하기로 결정했습니다. iss02 가지를 생성하고 이동합니다.
administrator@vmgate:~/code/environments/production$ git branch iss02 administrator@vmgate:~/code/environments/production$ git checkout iss02
새 모듈 danger_module을 추가합니다. ➊ 모듈 디렉터리와 ➋ 매니페스트 디렉터리를 생성하고 ➌ 기본 매니페스트 init.pp를 작성합니다.
administrator@vmgate:~/code/environments/production$ mkdir modules/danger_module ➊ administrator@vmgate:~/code/environments/production$ mkdir modules/danger_module/manifests ➋ administrator@vmgate:~/code/environments/production$ vi modules/danger_module/manifests/init.pp ➌
실습을 위한 모듈 danger_module의 내용입니다. notify 리소스로 경고 메시지만 출력하고 있습니다.
# /home/administrator/code/environments/production/modules/danger_module/manifests/init.pp # danger_module 기본 매니페스트 class danger_module { notify { "===== danger :: do not use this module =====\n": } }