Circlean/fs_shell/etc/rc.local

24 lines
205 B
Bash
Executable File

#!/bin/bash
set -e
cleanup(){
apt-get autoremove -y
apt-get autoclean -y
apt-get clean -y
/sbin/shutdown -h now
}
trap TERM EXIT
apt-get update -y
apt-get dist-upgrade
/bin/bash