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