11 lines
123 B
Bash
Executable File
11 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
apt-get update
|
|
apt-get dist-upgrade -y
|
|
apt-get autoremove -y
|
|
apt-get clean
|
|
|
|
#postsuper -d ALL
|
|
|
|
exit 0
|