Browse Source

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

Signed-off-by: Ryan Shea <sheabot03@gmail.com>
Ryan Shea 3 years ago
parent
commit
2deec80dba
1 changed files with 3 additions and 0 deletions
  1. 3 0
      contrib/check-config.sh

+ 3 - 0
contrib/check-config.sh

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