From 6df10be6eff6f7b118454ce4039b056fb4a9d21c Mon Sep 17 00:00:00 2001 From: Brice Waegeneire Date: Tue, 15 Mar 2022 10:20:43 +0100 Subject: [PATCH] evolinux-base: Fix top config. The wrong file was used as topdefaultrc. And we were using the wrong encoding, as top use ISO-8859 instead of UTF-8. --- evolinux-base/files/topdefaultrc | 24 ++++++++++++------------ evolinux-base/tasks/top.yml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/evolinux-base/files/topdefaultrc b/evolinux-base/files/topdefaultrc index b49be289..1faac8ba 100644 --- a/evolinux-base/files/topdefaultrc +++ b/evolinux-base/files/topdefaultrc @@ -1,15 +1,15 @@ top's Config File (Linux processes with windows) Id:j, Mode_altscr=0, Mode_irixps=1, Delay_time=3.0, Curwin=0 -Def fieldscur=Ä·&')*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz - winflags=193844, sortindx=18, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 - summclr=1, msgsclr=1, headclr=3, taskclr=1 -Job fieldscur=(Ä»@<)*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz - winflags=193844, sortindx=0, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 - summclr=6, msgsclr=6, headclr=7, taskclr=6 -Mem fieldscur=?@ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz - winflags=193844, sortindx=3, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 - summclr=3, msgsclr=3, headclr=2, taskclr=3 +Def fieldscur=¥¨³´»½À¼Ä·º¹Å&')*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz + winflags=177460, sortindx=18, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 + summclr=1, msgsclr=1, headclr=3, taskclr=1 +Job fieldscur=¥¦¹·º(³´Ä»½@<§Å)*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz + winflags=193844, sortindx=0, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 + summclr=6, msgsclr=6, headclr=7, taskclr=6 +Mem fieldscur=¥º»<½¾¿ÀÁMBNÃD34·Å&'()*+,-./0125689FGHIJKLOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz + winflags=193844, sortindx=21, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 + summclr=5, msgsclr=5, headclr=4, taskclr=5 +Usr fieldscur=¥¦§¨ª°¹·ºÄÅ)+,-./1234568;<=>?@ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz + winflags=193844, sortindx=3, maxtasks=0, graph_cpus=0, graph_mems=0, double_up=0, combine_cpus=0 + summclr=3, msgsclr=3, headclr=2, taskclr=3 Fixed_widest=0, Summ_mscale=1, Task_mscale=0, Zero_suppress=0 diff --git a/evolinux-base/tasks/top.yml b/evolinux-base/tasks/top.yml index 12eff20c..64fdf6b6 100644 --- a/evolinux-base/tasks/top.yml +++ b/evolinux-base/tasks/top.yml @@ -2,6 +2,6 @@ - name: Deploy top configuration file copy: # The config format is unredable; ATM it only add the SWAP column - src: htoprc + src: topdefaultrc dest: /etc/topdefaultrc mode: "0644"