7 lines
97 B
Bash
7 lines
97 B
Bash
|
#!/usr/bin/dash
|
||
|
if systemctl is-active ollama >/dev/null; then
|
||
|
echo 'ol'
|
||
|
else
|
||
|
echo ''
|
||
|
fi
|