X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fscripts%2Fdumpjournal.sh;h=9316676c738c4e19f1cbefbed8d80371e68b432e;hb=f911ecf332aca722c13590a5c0bf085a37d4841e;hp=696b994e8828c0271b3ca50cfbac5c41e805c534;hpb=4e8207f132f93636b19ff868186063ad026bca8a;p=src%2Fqa-testdefinitions.git diff --git a/common/scripts/dumpjournal.sh b/common/scripts/dumpjournal.sh index 696b994..9316676 100755 --- a/common/scripts/dumpjournal.sh +++ b/common/scripts/dumpjournal.sh @@ -19,6 +19,18 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # +if [ -x ./artiproxy-upload.sh ];then + DUMP_FILE=/tmp/dump + SYSTEMD_COLORS=false journalctl -a --no-pager > $DUMP_FILE + ./artiproxy-upload.sh $DUMP_FILE dumpjournal + # still dump to output if any error arise + if [ $? -eq 0 ];then + exit 0 + fi +else + echo "No upload, fallback to dump to console" +fi + SYSTEMD_COLORS=false journalctl -a --no-pager echo "dumpjournal: pass" exit 0