13 lines
144 B
Bash
13 lines
144 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function main() {
|
||
|
|
||
|
upgradeSystem
|
||
|
|
||
|
# do some stuff
|
||
|
|
||
|
cleanupDocker
|
||
|
}
|
||
|
|
||
|
source /tmp/resources/install_functions.sh
|
||
|
main
|