diff --git a/evolinux-base/tasks/system.yml b/evolinux-base/tasks/system.yml index 52766796..96a77a70 100644 --- a/evolinux-base/tasks/system.yml +++ b/evolinux-base/tasks/system.yml @@ -214,3 +214,16 @@ - grep_hotplug_eni.rc == 0 - ansible.builtin.meta: flush_handlers + +# Htop / top config + +- name: Deploy htop configuration + ansible.builtin.copy: + src: htoprc + dest: /etc/htoprc + mode: "0644" + +- name: Deploy top configuration file + ansible.builtin.file: + path: /etc/topdefaultrc + state: absent \ No newline at end of file diff --git a/evolinux-base/tasks/utils.yml b/evolinux-base/tasks/utils.yml index e3477d08..b9b76e3b 100644 --- a/evolinux-base/tasks/utils.yml +++ b/evolinux-base/tasks/utils.yml @@ -23,14 +23,3 @@ owner: root group: root mode: "0755" - -- name: Deploy htop configuration - ansible.builtin.copy: - src: htoprc - dest: /etc/htoprc - mode: "0644" - -- name: Deploy top configuration file - ansible.builtin.file: - path: /etc/topdefaultrc - state: absent