プロファイルを使用して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