- Added install.sh script to automate the installation process. - Included functions for initial checks, component installation, and configuration setup. - Ensured the script runs with strict mode enabled for better error handling. - Added user confirmation prompt before starting the setup. - Displayed a completion message and prompt for system reboot.
9 lines
116 B
Bash
9 lines
116 B
Bash
#!/bin/bash
|
|
|
|
# Definition of colors
|
|
BLUE="\033[1;34m"
|
|
GREEN="\e[32m"
|
|
RED="\e[31m"
|
|
YELLOW="\e[33m"
|
|
DEFAULT="\033[0m"
|