Improved project structure
This commit is contained in:
7
common/scripts/first_install.sh
Normal file
7
common/scripts/first_install.sh
Normal 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
10
common/scripts/update.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user