Explorar el Código

fix(check-config.sh): Check for existence of /etc/os-release before sourcing

Signed-off-by: Ryan Shea <sheabot03@gmail.com>
Ryan Shea hace 3 años
padre
commit
2deec80dba
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      contrib/check-config.sh

+ 3 - 0
contrib/check-config.sh

@@ -121,6 +121,9 @@ check_device() {
 }
 
 check_distro_userns() {
+	if [ ! -e /etc/os-release ]; then
+		return
+	fi
 	. /etc/os-release 2> /dev/null || /bin/true
 	case "$ID" in
 		centos | rhel)