프로필을 사용하여 Apache 서비스를 비활성화해야 합니다. 사전 설정을 사용하여 명령을 실행하는 옵션이 있습니까 systemctl disable
?
답변1
late.sh 사용 완료
if dpkg -l | grep "apache"; then
systemctl stop apache2.service
systemctl disable apache2.service
fi
프로필을 사용하여 Apache 서비스를 비활성화해야 합니다. 사전 설정을 사용하여 명령을 실행하는 옵션이 있습니까 systemctl disable
?
late.sh 사용 완료
if dpkg -l | grep "apache"; then
systemctl stop apache2.service
systemctl disable apache2.service
fi