diff --git a/.circleci/config.yml b/.circleci/config.yml index 6100f49..c4fef9f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,10 +19,11 @@ commands: setup_ubuntu: steps: - - run: apt-get update && apt-get install -y curl sudo + - run: apt-get update && apt-get install -y curl sudo python3 - run: cp test/utils/systemctl.py /bin/systemctl - run: cp test/utils/systemctl.py /bin/systemd - setup_common + - run: update-alternatives --install /usr/bin/python python /usr/bin/python3 1 setup_centos: steps: diff --git a/test/pillar/datadog5.sls b/test/pillar/datadog5.sls index c100d0c..0e24b44 100644 --- a/test/pillar/datadog5.sls +++ b/test/pillar/datadog5.sls @@ -11,4 +11,8 @@ datadog: name: "pillars" install_settings: - agent_version: 5.32.5 + {% if grains['os_family'].lower() == 'redhat' %} + agent_version: 5.32.9 + {% else %} + agent_version: 5.32.8 + {% endif %}