X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=resources%2Ftools%2Ftestbed-setup%2Fansible%2Froles%2Fperformance_tuning%2Ftasks%2Fturbo_boost.yaml;h=11f0e326d9115318baa7477d3d199896663c09ed;hb=cfceaf325c290fc3a07f6c7cbefc1fc4af6dde1e;hp=f6633f5e827ac9c6c877e45a45455a93f246a959;hpb=8605f3f406468f57bb9b2eac12a4421f65965300;p=csit.git diff --git a/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml index f6633f5e82..11f0e326d9 100644 --- a/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml +++ b/resources/tools/testbed-setup/ansible/roles/performance_tuning/tasks/turbo_boost.yaml @@ -1,16 +1,24 @@ --- # file: roles/performance_tuning/tasks/turbo_boost.yaml -- name: Turbo boost - Install msr-tools +- name: Inst - Update Package Cache (APT) + apt: + update_cache: yes + cache_valid_time: 3600 + when: + - ansible_distribution|lower == 'ubuntu' + tags: + - turbo-inst-prerequisites + +- name: Install msr-tools package: name: - "msr-tools" state: latest - update_cache: true tags: - - turbo-boost + - turbo-inst-prerequisites -- name: Turbo boost - Load msr by default +- name: Load msr By Default lineinfile: path: "/etc/modules" state: "present" @@ -18,7 +26,7 @@ tags: - turbo-boost -- name: Turbo boost - Custom startup service hook +- name: Custom Startup Service Hook copy: src: "files/disable-turbo-boost.service" dest: "/etc/systemd/system/disable-turbo-boost.service" @@ -28,7 +36,7 @@ tags: - turbo-boost -- name: Turbo boost - Custom startup service hook enable +- name: Custom Startup Service Hook Enable service: name: "disable-turbo-boost" enabled: yes