This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.

21 lines
515 B
JavaScript

module.exports = {
variables: {},
steps: [
{
description: "Zugriff prüfen",
command: "if [ $EUID -ne 0 ]; then exit 1; fi"
},
{
description: "Paketlisten aktualisiert",
command: "apt-get update"
},
{
description: "Pakete aktualisiert",
command: "apt-get upgrade -y"
},
{
description: "Pakete bereinigt",
command: "apt-get autoremove -y"
}
]
}