diff --git a/scripts/cloudron-support b/scripts/cloudron-support index 8e41069ad..85cb95d9b 100755 --- a/scripts/cloudron-support +++ b/scripts/cloudron-support @@ -631,7 +631,7 @@ function print_system() { echo "Ubuntu: ${ubuntu_codename} ${ubuntu_version}" proc_count=$(grep -c ^processor /proc/cpuinfo) proc_name=$(lscpu | grep "Model name:" | sed -r 's/Model name:\s{1,}//g') - env_type=$(systemd-detect-virt) # systemd-detect-virt --list gives all the possible options + env_type=$(systemd-detect-virt || echo none) # systemd-detect-virt --list gives all the possible options echo "Execution environment: ${env_type}" echo "Processor: ${proc_name} x ${proc_count}" ram_kb=$(grep MemTotal /proc/meminfo | awk '{print $2}')