diff options
author | EuAndreh <eu@euandre.org> | 2023-07-01 06:06:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-07-01 06:06:48 -0300 |
commit | 8b14aa02d356ccbe4f9fd3ab9131908fcc4a2aec (patch) | |
tree | ae7074bbf8a7ced2be2f62dd019d7df4e99f1139 | |
parent | etc/guix/home.scm: Add time(1) package (diff) | |
download | dotfiles-8b14aa02d356ccbe4f9fd3ab9131908fcc4a2aec.tar.gz dotfiles-8b14aa02d356ccbe4f9fd3ab9131908fcc4a2aec.tar.xz |
opt/tests/assert-running-service.sh: Adapt string check
-rwxr-xr-x | opt/tests/assert-running-service.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opt/tests/assert-running-service.sh b/opt/tests/assert-running-service.sh index d58233f..c4c5851 100755 --- a/opt/tests/assert-running-service.sh +++ b/opt/tests/assert-running-service.sh @@ -11,7 +11,7 @@ mcron unset LC_ALL for s in $SERVICES; do LANG=en_US.UTF-8 herd status "$s" | - awk -vs="$s" 'NR == 2 && $3 != "started." { + awk -vs="$s" 'NR == 2 && $3 != "running" { printf "Home Shepherd service \"%s\" is not running.\n", s exit 1 }' |