mirror of
https://github.com/snachodog/handy-debian-scripts.git
synced 2025-04-03 10:41:24 -06:00
23 lines
627 B
Bash
Executable File
23 lines
627 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Variables
|
|
CONTAINER_NAME="yacreader"
|
|
LIBRARY_PATH="/comics"
|
|
COMMAND="YACReaderLibraryServer update-library"
|
|
|
|
# Check if the container is running
|
|
if docker ps --format "{{.Names}}" | grep -q "^$CONTAINER_NAME$"; then
|
|
echo "Container '$CONTAINER_NAME' is running. Executing the update command..."
|
|
docker exec "$CONTAINER_NAME" $COMMAND "$LIBRARY_PATH"
|
|
if [ $? -eq 0 ]; then
|
|
echo "Library update completed successfully."
|
|
else
|
|
echo "An error occurred while updating the library."
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Error: Container '$CONTAINER_NAME' is not running."
|
|
exit 1
|
|
fi
|
|
|