dotfiles/wrappers/pgsql-stop
2025-01-09 11:02:47 -06:00

7 lines
132 B
Bash
Executable file

#!/bin/sh
PODMAN_NAME="PostgreSQL"
if ! podman stop "$PODMAN_NAME" 1>&- ; then
echo "Failed to stop podman running postgres"
fi