我需要使用预置文件禁用 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