커밋 목록에 Revert 커밋이 새로 생성되었습니다.
administrator@vmgate:~/code/environments/production$ git log --oneline
5f15ae0 (HEAD -> iss02) Revert "Test danger module on vm03"
e8b939d Test danger module on vm03
07aa08f Create danger module
4f145da (master) Finish fortunecow
62721ff Create motd.pp of fortunecow
c881532 (iss01) Test fortunecow on vm03
9cda602 Create fortunecow module
4fe8cdf First commit
오타가 있었던 노드 선언을 다시 수정해야 합니다.
administrator@vmgate:~/code/environments/production$ vi manifests/site.pp
git revert 결과 수정하기 전으로 되돌아간 상태를 확인할 수 있습니다. 정확한 이름을 사용하여 다시 클래스를 참조합니다.
# /home/administrator/code/environments/production/manifests/site.pp
# 노드 선언
...
node 'vm03.linuxmastery.kr' {
include base
include fortunecow
include danger_module
}
...