mirror of https://github.com/CIRCL/Circlean
22 lines
215 B
Plaintext
22 lines
215 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cleanup(){
|
||
|
apt-get autoremove -y
|
||
|
apt-get autoclean -y
|
||
|
apt-get clean -y
|
||
|
|
||
|
/sbin/shutdown -P -h now
|
||
|
}
|
||
|
|
||
|
|
||
|
trap cleanup INT TERM EXIT
|
||
|
|
||
|
apt-get update -y
|
||
|
apt-get dist-upgrade -y
|
||
|
|
||
|
|
||
|
/bin/bash
|
||
|
|
||
|
|
||
|
|