debian-repo-install-test: systemctl status -n 200

Show up to 200 log lines instead of the default (10).

Related: OS#3369
Change-Id: Ic72dbf1b4c59a259139187b98e74211d57534dc2
This commit is contained in:
Oliver Smith 2019-07-26 08:19:41 +02:00
parent ee01cc5548
commit ef8b48516e
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ services_check() {
sleep 2
for service in $services_feed; do
if ! systemctl --no-pager -l status $service; then
if ! systemctl --no-pager -l -n 200 status $service; then
failed="$failed $service"
fi
done