You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
On line 122 of the install_cht_perfmon.sh should contain an else to handle wget for debian distros.
The redhat yum install is handled but not the debian cases.
118 if ! command_exists wget ; then
119 if command_exists yum ; then
120 echo "** Installing wget first via yum.." 2>&1 | tee -a /tmp/agent_install_log.txt
121 yum install wget
122 fi
123 fi
Should become:
118 if ! command_exists wget ; then
119 if command_exists yum ; then
120 echo "** Installing wget first via yum.." 2>&1 | tee -a /tmp/agent_install_log.txt
121 yum install wget
122 else
123 echo "** Installing wget first via apt-get.." 2>&1 | tee -a /tmp/agent_install_log.txt
124 apt-get install wget -y
125 fi
126 fi
Thanks
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
On line 122 of the install_cht_perfmon.sh should contain an else to handle wget for debian distros.
The redhat yum install is handled but not the debian cases.
118 if ! command_exists wget ; then
119 if command_exists yum ; then
120 echo "** Installing wget first via yum.." 2>&1 | tee -a /tmp/agent_install_log.txt
121 yum install wget
122 fi
123 fi
Should become:
118 if ! command_exists wget ; then
119 if command_exists yum ; then
120 echo "** Installing wget first via yum.." 2>&1 | tee -a /tmp/agent_install_log.txt
121 yum install wget
122 else
123 echo "** Installing wget first via apt-get.." 2>&1 | tee -a /tmp/agent_install_log.txt
124 apt-get install wget -y
125 fi
126 fi
Thanks
The text was updated successfully, but these errors were encountered: