This commit is contained in:
Sean Wheller 2019-08-12 20:08:42 +02:00
parent c1e262821f
commit f3bbf6cedd
2 changed files with 8 additions and 8 deletions

View File

@ -36,13 +36,6 @@ sleep 5
. settings.sh . settings.sh
sleep 5 sleep 5
# User input
. input.sh
sleep 5
# Stop running instance
. stop.sh
# Update system # Update system
. maintenance.sh . maintenance.sh
sleep 5 sleep 5
@ -51,6 +44,13 @@ sleep 5
. depends.sh . depends.sh
sleep 5 sleep 5
# User input
. input.sh
sleep 5
# Stop running instance
. stop.sh
# Get source and build by sourcing our build file # Get source and build by sourcing our build file
. build.sh . build.sh
sleep 5 sleep 5

View File

@ -2,7 +2,7 @@
echo "${_GREEN}MAINTENANCE STARTED${_RESET}" echo "${_GREEN}MAINTENANCE STARTED${_RESET}"
if [ $_APT_MAINETANCE -eq 1 ]; then if [ "$_APT_MAINETANCE" -eq "1" ]; then
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean