Improved project structure

This commit is contained in:
2021-03-07 17:40:20 +01:00
parent 0a6836a8e5
commit c7751c2cd2
40 changed files with 141 additions and 113 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
first_install() {
echo 'Installing:'
sudo apt-get install net-tools htop tree zip unzip-y
}

10
common/scripts/update.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
update() {
echo 'Starting update:'
sudo apt-get update -y
echo 'Starting upgrade:'
sudo apt-get upgrade -y
echo 'Starting dist-upgrade:'
sudo apt-get dist-upgrade -y
}