Browse Source

Merge branch 'meienberger:master' into master

allaeddine boulefaat 2 years ago
parent
commit
07e8be4c41
3 changed files with 9 additions and 2 deletions
  1. 3 0
      scripts/app.sh
  2. 2 2
      scripts/configure.sh
  3. 4 0
      scripts/start.sh

+ 3 - 0
scripts/app.sh

@@ -1,4 +1,7 @@
 #!/usr/bin/env bash
+# Required Notice: Copyright
+# Umbrel (https://umbrel.com)
+
 set -euo pipefail
 
 # use greadlink instead of readlink on osx

+ 2 - 2
scripts/configure.sh

@@ -26,7 +26,7 @@ function install_docker() {
     sudo apt-get update
     sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
     return 0
-  elif [[ "${os}" == "ubuntu" ]]; then
+  elif [[ "${os}" == "ubuntu" || "${os}" == "pop" ]]; then
     sudo apt-get update
     sudo apt-get upgrade
     sudo apt-get install -y ca-certificates curl gnupg lsb-release
@@ -70,7 +70,7 @@ function install_jq() {
   local os="${1}"
   echo "Installing jq for os ${os}" >/dev/tty
 
-  if [[ "${os}" == "debian" || "${os}" == "ubuntu" ]]; then
+  if [[ "${os}" == "debian" || "${os}" == "ubuntu" || "${os}" == "pop" ]]; then
     sudo apt-get update
     sudo apt-get install -y jq
     return 0

+ 4 - 0
scripts/start.sh

@@ -1,4 +1,8 @@
 #!/usr/bin/env bash
+
+# Required Notice: Copyright
+# Umbrel (https://umbrel.com)
+
 set -e # Exit immediately if a command exits with a non-zero status.
 
 # use greadlink instead of readlink on osx