diff options
author | Holger Levsen <holger@layer-acht.org> | 2010-10-01 15:56:49 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2010-10-01 15:56:49 +0000 |
commit | 36766cb978f99b44c0da2db3e6ee1906f9c30715 (patch) | |
tree | dcc5eef05eb8c7d37212170f01dbc888b9d5ef1c /collect.d | |
parent | af2257ef4b7e4319d2396778642fab9a14f42c53 (diff) | |
download | sitesummary-36766cb978f99b44c0da2db3e6ee1906f9c30715.tar.gz sitesummary-36766cb978f99b44c0da2db3e6ee1906f9c30715.tar.bz2 sitesummary-36766cb978f99b44c0da2db3e6ee1906f9c30715.tar.xz |
* collect.d/system: collect /var/log/Xorg.0.log if it exists.
Diffstat (limited to 'collect.d')
-rw-r--r-- | collect.d/system | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/collect.d/system b/collect.d/system index 53485ae..bb36229 100644 --- a/collect.d/system +++ b/collect.d/system @@ -64,6 +64,10 @@ if [ -f /etc/X11/xorg.conf ]; then cp /etc/X11/xorg.conf . fi +if [ -f /var/log/Xorg.0.log ]; then + cp /var/log/Xorg.0.log . +fi + if [ -f /etc/X11/fs/config ]; then cp /etc/X11/fs/config x11-fs-config fi |