From e1a6e45740335bd51d9db07bd9d1ff2880db7586 Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Wed, 26 Mar 2014 19:57:39 +0000 Subject: [PATCH] small fix in data collector --- inxi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inxi b/inxi index efb0de9..3a1421c 100755 --- a/inxi +++ b/inxi @@ -1682,12 +1682,12 @@ debug_data_collector() if [[ -e $FILE_XORG_LOG ]];then cat $FILE_XORG_LOG &> $debug_data_dir/xorg-log-file.txt else - touch $debug_data_dir/no-xorg-log-file + touch $debug_data_dir/xorg-log-file-absent fi if [[ -e /etc/X11/xorg.conf ]];then cat /etc/X11/xorg.conf &> $debug_data_dir/xorg-conf.txt else - touch $debug_data_dir/no-xorg-conf-file + touch $debug_data_dir/xorg-conf-file-absent fi if [[ -n $( ls /etc/X11/xorg.conf.d/ 2>/dev/null ) ]];then ls /etc/X11/xorg.conf.d &> $debug_data_dir/ls-etc-x11-xorg-conf-d.txt @@ -1697,7 +1697,7 @@ debug_data_collector() cat /etc/X11/xorg.conf.d/$xorg_file &> $debug_data_dir/xorg-conf-d-$xorg_file.txt done else - touch $debug_data_dir/no-xorg-conf-d-files + touch $debug_data_dir/xorg-conf-d-files-absent fi echo 'Collecting X, xprop, glxinfo, xrandr, xdpyinfo data...' xprop -root &> $debug_data_dir/xprop_root.txt