#!/bin/bash
sudo apt update && sudo apt -y dist-upgrade && sudo apt -y autoremove
if ! [ -z $1 ] &&  [ $1 == "off" ]
  then
	sudo shutdown -h now
fi

