|
15 | 15 | # customers are expected to install the package themselves.
|
16 | 16 | # We do that here for the e2e testing environment.
|
17 | 17 | 'apt-get update',
|
| 18 | + 'sh -c "DEBIAN_FRONTEND=noninteractive dpkg --configure -a"', |
| 19 | + 'sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -f -y"', |
18 | 20 | 'sh -c "DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::=\\\"--force-confdef\\\" -o Dpkg::Options::=\\\"--force-confnew\\\" -y install libssl-dev"', # noqa: E501
|
19 |
| - 'apt-get install -y gcc gnupg lsb-release ca-certificates', |
| 21 | + 'sh -c "DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::=\\\"--force-confdef\\\" -o Dpkg::Options::=\\\"--force-confnew\\\" -y install gcc gnupg lsb-release ca-certificates"', # noqa: E501 |
| 22 | + # 'apt-get install -y gcc gnupg lsb-release ca-certificates', |
20 | 23 | # mapr-streams-python requires librdkafka headers as they're not shipped with the Agent
|
21 | 24 | # This requires adding confluent's APT repositories. These steps are based on the docs in
|
22 | 25 | # - https://docs.confluent.io/platform/current/installation/installing_cp/deb-ubuntu.html#get-the-software
|
|
31 | 34 | 'apt-get install -y librdkafka-dev',
|
32 | 35 | # Finally, we can install the package
|
33 | 36 | '/opt/datadog-agent/embedded/bin/pip install mapr-streams-python',
|
34 |
| - 'sh -c "DEBIAN_FRONTEND=noninteractive dpkg --configure -a"', |
35 |
| - 'sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -f -y"', |
| 37 | + # 'sh -c "DEBIAN_FRONTEND=noninteractive dpkg --configure -a"', |
| 38 | + # 'sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -f -y"', |
36 | 39 | ]
|
37 | 40 | }
|
38 | 41 |
|
|
0 commit comments