File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
packaging/datadog-agent/source Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,12 @@ elif [ $OS = "Debian" ]; then
139139 printf " \033[34m\n* Installing apt-transport-https\n\033[0m\n"
140140 $sudo_cmd apt-get update || printf " \033[31m'apt-get update' failed, the script will not install the latest version of apt-transport-https.\033[0m\n"
141141 $sudo_cmd apt-get install -y apt-transport-https
142+ # Only install dirmngr if it's available in the cache
143+ # it may not be available on Ubuntu <= 14.04 but it's not required there
144+ cache_output=` apt-cache search dirmngr`
145+ if [ ! -z " $cache_output " ]; then
146+ $sudo_cmd apt-get install -y dirmngr
147+ fi
142148 printf " \033[34m\n* Installing APT package sources for Datadog\n\033[0m\n"
143149 $sudo_cmd sh -c " echo 'deb https://apt.datadoghq.com/ stable main' > /etc/apt/sources.list.d/datadog.list"
144150 $sudo_cmd apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 C7A7DA52
You can’t perform that action at this time.
0 commit comments