Linux - 특정 서비스 관련 데몬 시작, 정지, 체크 스크립트
PXE 관련 서비스를 한번에 살리고, 정지하고, 현재 데몬의 상태를 확인하는 스크립트입니다. service 변수에 필요한 모든 데몬명을 넣어, 한번에 시작, 정지, 체크할 수 있습니다. #!/bin/bash service="httpd dhcpd tftp" function select_watch { echo echo "=======================================" echo " 1) Start the daemon related to the PXE service." echo echo " 2) Stop the daemon related to the PXE service." echo echo " 3) Check the daemon related to the PXE service." ec..