summaryrefslogtreecommitdiffstats
path: root/core/modules/pvs2/data/opt/openslx/bin/pvsstartup
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/pvs2/data/opt/openslx/bin/pvsstartup')
-rwxr-xr-xcore/modules/pvs2/data/opt/openslx/bin/pvsstartup3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modules/pvs2/data/opt/openslx/bin/pvsstartup b/core/modules/pvs2/data/opt/openslx/bin/pvsstartup
index e5da0a0c..0207c268 100755
--- a/core/modules/pvs2/data/opt/openslx/bin/pvsstartup
+++ b/core/modules/pvs2/data/opt/openslx/bin/pvsstartup
@@ -15,6 +15,7 @@ DIR=$(mktemp -d)
[ -n "$DIR" ] && cd "$DIR"
ulimit -c unlimited
+exec &> "/tmp/xsession-log-pvsclient-$(date +%s)-$$"
while [ $timediff -gt 3 ]; do
start="$(date +%s)"
@@ -23,7 +24,7 @@ while [ $timediff -gt 3 ]; do
end="$(date +%s)"
[ "$ret" = 139 ] && for c in core*; do
[ -f "$c" ] || continue
- tar ckzf "cmp-${c}.tgz" "$c"
+ tar ckzf "cmp-${c}.tgz" "$c" "/opt/openslx/.mltk/pvs2.git" "/etc/issue"
curl -m 3 -H "Expect:" -f -s -S -F "file=@cmp-${c}.tgz;filename=report" "$URL" &> /dev/null
rm -f -- "$c" "cmp-${c}.tgz"
done