Shell Scripts to Automate Common Maintenance tasks for Linux servers
Truth be told, one day I will learn and use somethimg like Ansible, but today I use the following scripts to make regular maintenance tasks easy for the linux servers in my home lab:
For my Ubuntu/Debian servers:
#!/bin/bash
# Update the system
sudo apt-get update -y
sudo apt-get…