おそらく出力は stderr
になります 、 stdout
ではありません ?これを試してください:
OUTPUT=$(sudo apache2ctl configtest 2>&1)
configtest が構成ファイルのエラーで成功する可能性がある nginx の可能性のある状況の場合:
nginx: [warn] conflicting server name "test.com" on 0.0.0.0:80, ignored
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
bash スクリプトのチェック エラーを修正するには、以下を使用する必要があります:
if [[ $((sudo /sbin/service nginx configtest) 2>&1 | grep "failed\|warn" ) ]]; then
echo "ERROR!!!"
else
echo "OK!!!"
fi