From 2b71d76f2311b2519242555996b5f0ce02c6b0d3 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Mon, 23 Sep 2024 21:54:50 +0500 Subject: [PATCH] address a minor issue with apache installation on openvz --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ def mountTemp(self): 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,