7 lines
190 B
Bash
Executable File
7 lines
190 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
systemctl list-unit-files | grep -i caddy || true
|
|
systemctl list-units --type=service | grep -i caddy || true
|
|
which caddy || true
|
|
caddy version || true
|