diff --git a/install/install.py b/install/install.py index c436027e5..b0b908b8a 100755 --- a/install/install.py +++ b/install/install.py @@ -330,7 +330,7 @@ class preFlightsChecks: result = subprocess.run('systemd-detect-virt', capture_output=True, text=True, shell=True) - if result.stdout.find('openvz') == -1: + if result.stdout.find('openvz') > -1: if self.distro == ubuntu: command = 'DEBIAN_FRONTEND=noninteractive apt install inetutils-inetd -y' preFlightsChecks.call(command, self.distro, command,