6 lines
97 B
Text
6 lines
97 B
Text
|
#!/usr/bin/env sh
|
||
|
cd /run/runit/service || exit
|
||
|
for service in *; do
|
||
|
sv status "$service"
|
||
|
done
|