使用预置禁用服务

使用预置禁用服务

我需要使用预置文件禁用 apache 服务。是否有任何选项可以使用systemctl disable预置运行命令?

答案1

使用late.sh完成

if dpkg -l | grep "apache"; then
        systemctl stop apache2.service
        systemctl disable apache2.service
fi

相关内容