mirror of
https://github.com/snachodog/handy-debian-scripts.git
synced 2025-04-04 03:01:24 -06:00
Initial commit
This commit is contained in:
commit
6ce47b3811
33
ip_address_fix.sh
Executable file
33
ip_address_fix.sh
Executable file
@ -0,0 +1,33 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Ensure the script is run as root
|
||||||
|
if [ "$EUID" -ne 0 ]; then
|
||||||
|
echo "Please run as root or use sudo"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Install resolvconf
|
||||||
|
apt update && apt install -y resolvconf
|
||||||
|
|
||||||
|
# Enable and start resolvconf service
|
||||||
|
systemctl enable resolvconf
|
||||||
|
systemctl start resolvconf
|
||||||
|
|
||||||
|
# Check service status
|
||||||
|
systemctl status resolvconf --no-pager
|
||||||
|
|
||||||
|
# Update resolv.conf head file
|
||||||
|
cat <<EOF > /etc/resolvconf/resolv.conf.d/head
|
||||||
|
nameserver 8.8.8.8
|
||||||
|
nameserver 8.8.4.4
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Apply changes
|
||||||
|
resolvconf --enable-updates
|
||||||
|
resolvconf -u
|
||||||
|
|
||||||
|
# Confirm changes
|
||||||
|
echo "Updated resolv.conf file:"
|
||||||
|
cat /etc/resolv.conf
|
||||||
|
|
||||||
|
echo "resolvconf setup completed successfully."
|
22
update_yacreader_library.sh
Executable file
22
update_yacreader_library.sh
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/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
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user