We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c3c35 commit f526ecfCopy full SHA for f526ecf
wordpress_install.sh
@@ -249,7 +249,15 @@ apt -y purge expect
249
run_script STATIC new_etc_mycnf
250
251
# Install VM-tools
252
-install_if_not open-vm-tools
+if [ "$SYSVENDOR" == "VMware, Inc." ];
253
+then
254
+ install_if_not open-vm-tools
255
+elif [[ "$SYSVENDOR" == "QEMU" || "$SYSVENDOR" == "Red Hat" ]];
256
257
+ install_if_not qemu-guest-agent
258
+ systemctl enable qemu-guest-agent
259
+ systemctl start qemu-guest-agent
260
+fi
261
262
# Install Nginx
263
check_command yes | add-apt-repository ppa:ondrej/nginx
0 commit comments