mirror of
https://github.com/ilyakooo0/xmrig-bash-scripts.git
synced 2024-11-26 04:31:39 +03:00
11 lines
170 B
Bash
Executable File
11 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $_APT_MAINETANCE = 1 ]; then
|
|
|
|
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean
|
|
|
|
fi
|
|
|
|
echo "MAINTENANCE COMPLETE"
|
|
|