mirror of
https://github.com/ilyakooo0/xmrig-bash-scripts.git
synced 2024-11-22 04:04:22 +03:00
13 lines
238 B
Bash
Executable File
13 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "${_GREEN}MAINTENANCE STARTED${_RESET}"
|
|
|
|
if [ "$_APT_MAINETANCE" -eq "1" ]; then
|
|
|
|
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean
|
|
|
|
fi
|
|
|
|
echo "${_CYAN}MAINTENANCE STOPPED${_RESET}"
|
|
|