diff --git a/mysql/install-packages.sh b/mysql/install-packages.sh index 5c820f2..55ec1c8 100644 --- a/mysql/install-packages.sh +++ b/mysql/install-packages.sh @@ -1,4 +1,4 @@ #!/bin/sh -apt-get update && apt-get install mariadb-client +apt-get update && apt-get install -y mariadb-client echo "Installed dependencies" \ No newline at end of file diff --git a/postgresql/install-packages.sh b/postgresql/install-packages.sh index da3bff3..83c091d 100644 --- a/postgresql/install-packages.sh +++ b/postgresql/install-packages.sh @@ -1,5 +1,5 @@ #!/bin/sh -apt-get update && apt-get install postgresql +apt-get update && apt-get install -y postgresql echo "Installed dependencies" \ No newline at end of file