7 lines
132 B
Bash
Executable file
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
|