diff --git a/extras/deploy-scripts/pandora_deploy_community_el8_gh.sh b/extras/deploy-scripts/pandora_deploy_community_el8_gh.sh index c007f319d1..f981e5a440 100644 --- a/extras/deploy-scripts/pandora_deploy_community_el8_gh.sh +++ b/extras/deploy-scripts/pandora_deploy_community_el8_gh.sh @@ -390,6 +390,7 @@ console_dependencies=" \ mod_ssl \ libzstd \ openldap-clients \ + https://github.com/pandorafms/pandorafms/releases/download/tools/pandora_gotty-1.1-1.el8.x86_64.rpm \ chromium" execute_cmd "dnf install -y $console_dependencies" "Installing Pandora FMS Console dependencies" diff --git a/extras/deploy-scripts/pandora_deploy_community_el9_gh.sh b/extras/deploy-scripts/pandora_deploy_community_el9_gh.sh index 641715089c..6cc4a6531c 100644 --- a/extras/deploy-scripts/pandora_deploy_community_el9_gh.sh +++ b/extras/deploy-scripts/pandora_deploy_community_el9_gh.sh @@ -381,6 +381,7 @@ console_dependencies=" \ mod_ssl \ libzstd \ openldap-clients \ + https://github.com/pandorafms/pandorafms/releases/download/tools/pandora_gotty-1.1-1.el8.x86_64.rpm \ chromium " execute_cmd "dnf install -y $console_dependencies" "Installing Pandora FMS Console dependencies" diff --git a/extras/deploy-scripts/pandora_deploy_community_gh.sh b/extras/deploy-scripts/pandora_deploy_community_gh.sh index 01bf2f213f..56fb76ac51 100644 --- a/extras/deploy-scripts/pandora_deploy_community_gh.sh +++ b/extras/deploy-scripts/pandora_deploy_community_gh.sh @@ -280,6 +280,7 @@ console_dependencies=" \ mod_ssl \ libzstd \ openldap-clients \ + https://github.com/pandorafms/pandorafms/releases/download/tools/pandora_gotty-1.1-1.el8.x86_64.rpm \ chromium" execute_cmd "yum install -y $console_dependencies" "Installing Pandora FMS Console dependencies" diff --git a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204_gh.sh b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204_gh.sh index 0677f22d2b..f5c6ff3a58 100644 --- a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204_gh.sh +++ b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204_gh.sh @@ -344,6 +344,9 @@ execute_cmd "apt install -y $server_dependencies" "Installing Pandora FMS Server execute_cmd "installing_docker" "Installing Docker for debug" +# Installing pandora_gotty +execute_cmd "curl --output pandora_gotty.deb https://github.com/pandorafms/pandorafms/releases/download/tools/pandora_gotty_1.1.0.deb" "Downloading pandora_gotty" +execute_cmd "apt install -y ./pandora_gotty.deb" "Intalling pandora_gotty" # create symlink for fping rm -f /usr/sbin/fping &>> "$LOGFILE"