Ubuntu

使用 preseed 禁用服務

  • August 3, 2020

我需要使用 preseed 文件禁用 apache 服務。是否有任何選項可以systemctl disable使用 preseed 執行命令?

通過使用 late.sh 完成

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

引用自:https://unix.stackexchange.com/questions/600569