This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -x | |
| set -e | |
| set -o pipefail | |
| # install apt packeges | |
| insatll_package() { | |
| export DEBIAN_FRONTEND=noninteractive | |
| sudo apt update && sudo apt upgrade -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -x | |
| export DEBIAN_FRONTEND=noninteractive | |
| #Function to Install general dependencies | |
| installGeneralDependencies() | |
| { | |
| sudo apt-get update && sudo apt upgrade -y |