X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Ftestbed-setup%2Fansible%2Froles%2Ftg_sut%2Ftasks%2Fturbo_boost.yaml;h=2fa704cdb0665e04ab9053e440eadfceaef64169;hb=refs%2Fchanges%2F67%2F22767%2F2;hp=1002792aa8b483daa6a15ae608f912ac88119445;hpb=fba708653f0c3bdc01ffcd86a10e5aab379380a5;p=csit.git diff --git a/resources/tools/testbed-setup/ansible/roles/tg_sut/tasks/turbo_boost.yaml b/resources/tools/testbed-setup/ansible/roles/tg_sut/tasks/turbo_boost.yaml index 1002792aa8..2fa704cdb0 100644 --- a/resources/tools/testbed-setup/ansible/roles/tg_sut/tasks/turbo_boost.yaml +++ b/resources/tools/testbed-setup/ansible/roles/tg_sut/tasks/turbo_boost.yaml @@ -1,25 +1,33 @@ --- # file: roles/tg_sut/tasks/turbo_boost.yaml -- name: Install msr-tools +- name: Turbo boost - Install msr-tools apt: name: - 'msr-tools' state: 'present' + cache_valid_time: 3600 install_recommends: False - tags: install-msr + tags: turbo-boost -- name: Disable Turbo-Boost by service +- name: Turbo boost - Load msr by default + lineinfile: + path: '/etc/modules' + state: 'present' + line: 'msr' + tags: turbo-boost + +- name: Turbo boost - Custom startup service hook copy: src: 'files/disable-turbo-boost.service' dest: '/etc/systemd/system/disable-turbo-boost.service' owner: 'root' group: 'root' mode: '0644' - tags: disable-turbo-boost + tags: turbo-boost -- name: Disable Turbo-Boost by service on startup +- name: Turbo boost - Custom startup service hook enable service: - name: disable-turbo-boost + name: 'disable-turbo-boost' enabled: yes - tags: disable-turbo-boost + tags: turbo-boost